Many third-party tools can connect to NagaAI as long as they let you set a base URL, an API key, and a model. Start with the protocol the tool already supports.Documentation Index
Fetch the complete documentation index at: https://docs.naga.ac/llms.txt
Use this file to discover all available pages before exploring further.
Which protocol should you use?
OpenAI-Compatible
Best fit for most third-party apps that expect an OpenAI-style base URL and
chat-shaped requests.
Anthropic Messages
Use this when the tool is built around Anthropic-style content blocks and
Messages streaming.
Responses API
Use this when the tool already supports the newer Responses endpoint and
item-based workflows.
Connection settings
| Tool expects | Base URL | Auth |
|---|---|---|
| OpenAI-compatible requests | https://api.naga.ac/v1 | Your standard NagaAI API key |
| OpenAI Responses API | https://api.naga.ac/v1 | Your standard NagaAI API key |
| Anthropic Messages API | https://api.naga.ac | Your standard NagaAI API key |
What most tools need
Most integrations only need three values:-
Base URL
Usually
https://api.naga.ac/v1, orhttps://api.naga.acfor Anthropic-style tools. - API key Use your standard NagaAI API key.
- Model Choose an exact NagaAI model ID.
Need an API key? Create one in the NagaAI Dashboard, or start with Quickstart.
If the tool uses agents or tools
Choose a model that supports function calling:Generic setup flow
- Identify whether the tool expects OpenAI-compatible or Anthropic-compatible settings.
- Paste the correct base URL.
- Paste your NagaAI API key.
- Pick a model ID.
- Send a simple test request.
Common mistakes
| Problem | Likely cause | Fix |
|---|---|---|
| Auth fails | Wrong key type or bad copy/paste | Recreate or re-enter your standard API key |
| Request hits the wrong endpoint shape | Wrong base URL for the tool’s protocol | Use https://api.naga.ac/v1 for OpenAI-style tools or https://api.naga.ac for Anthropic-style tools |
| Agent features do not work | Chosen model does not support tools | Pick a tools-capable model |