Two ways to use MCP Auth
If you are missing a catalog MCP server you can request it.
How to use it
Catalog MCP servers
-
Create the integration
In the Nango UI: Integrations β Configure New Integration β choose the MCP provider (e.g. HubSpot (MCP), Notion MCP).
Some providers, for example HubSpot MCP, require you to register an MCP auth app and add Client ID and Client Secret in Nango. But most support dynamic client registrations: You can just enable them on Nango, and Nango registers a client for you in the background. -
Run the same auth flow as standard OAuth
- Backend: create a Connect session with
allowed_integrations: ['<integration-id>'](e.g.hubspot-mcp,notion-mcp). - Frontend: open the Connect UI with the session token.
- Backend: persist the connection ID from the auth webhook or Connect UI callback.
- Backend: create a Connect session with
-
Call the MCP server
Use the storedconnection_idand integration id (e.g.hubspot-mcp) with the Proxy API (JSON-RPCtools/call, etc.).
Generic MCP Server OAuth2
-
Create a generic MCP integration
Integrations β Configure New Integration β MCP Server OAuth2 (Generic). Optionally set OAuth Client Name, URI, and Logo URI (used in dynamic client registration with the MCP server). -
Same Connect session + Connect UI flow
As above: backend creates a session withallowed_integrations: ['mcp-generic'](or your custom integration id), frontend opens Connect UI with that token, backend stores the connection ID. -
End user supplies the MCP server URL
When the user starts the connection, the Connect UI prompts for MCP Server URL (e.g.https://mcp.notion.com/mcp). Nango automatically discovers the OAuth endpoints from the server and walks the user through the OAuth connection flow. -
Call the MCP server
Same as pre-built: use the connection with the Proxy API. The connection is tied to the MCP server URL the user entered.
Our generic MCP provider currently only works with MCP servers that support automatic client registration (DCR, or CIMD).
End user experience
-
Catalog MCP servers
User sees a list of supported MCP servers in your app β clicks connect β is redirected to the providerβs OAuth page (e.g. HubSpot or Notion) β signs in and approves β connection is created in Nango -
MCP Generic
User clicks connect β sees a form asking for the MCP Server URL β submits β is redirected to that MCP serverβs OAuth page β signs in and approves β connection is created in Nango