AI agents become useful when they can act in the systems your users already use: HubSpot, Gmail, Slack, Linear, Notion, Salesforce, and the rest. The hard part is not just calling an API. It is OAuth, token refresh, per-user permissions, rate limits, logging, and keeping credentials out of the model loop. Nango handles that plumbing. Users authorize integrations through Nango, you expose selected action functions as tools, and agents call those action functions through the Nango API or the built-in MCP server.Documentation Index
Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
When this fits
Use Nango for AI tool calling when:- Your agent needs to fetch or change data in external APIs.
- Tool calls must run with each user’s own credentials.
- You want logs, retries, rate-limit handling, and a deployable runtime.
- You need template action functions now, with room for custom action functions later.
- You want one MCP server URL for Nango-hosted tools.
How Nango fits in
- Your user authorizes an integration with Nango.
- You enable template action functions or deploy custom action functions for allowed operations.
- Your agent lists or receives those action functions as tools.
- The agent asks Nango to execute an action function for the right connection.
- Nango runs the external API call with the user’s credentials and logs the execution.
Technical setup
Nango supports both direct action function execution and MCP-based tool discovery. Use the technical Tool calling & MCP guide for headers, transports, tool discovery, action execution, and client setup.What to read next
- Tool calling & MCP - connect Nango action functions to agents, LLM SDKs, and MCP clients.
- Action functions - build the action functions agents can call.
- Get integration functions config - list enabled action functions programmatically.
- Functions guide - create, test, deploy, and trigger functions.
- Auth guide - let users authorize external APIs.