Connect Your AI Tool
Step-by-step setup for connecting Claude, ChatGPT, Cursor, Claude Code, VS Code, and Codex to Adsumo's MCP server with OAuth.
Before you start
- You need an Adsumo account. Sign up at adsumo.ai if you don't have one.
- No API key required. Adsumo MCP uses OAuth — you'll sign in and approve access in your browser the first time you use it.
- Browsing your brands, products, and the ad library works on any plan. Generating ads requires a paid plan.
The connector URL is:
https://www.adsumo.ai/api/mcpAdd this URL in your AI tool, then run any Adsumo tool. Your tool opens a browser window to sign in and approve access — that's it.
Claude (web & desktop)
- Open Settings → Connectors.
- Click Add custom connector.
- Name it Adsumo and paste the connector URL above.
- Click Connect, then sign in and approve access when Adsumo opens.
ChatGPT
- Open Settings → Apps (custom connectors).
- Click Add app and paste the connector URL above.
- Add it, then sign in and approve access.
Claude Code
Add the server from your terminal:
claude mcp add --transport http adsumo https://www.adsumo.ai/api/mcpThen run any Adsumo tool — Claude Code opens a browser window to sign in and approve access. No headers or keys needed.
Cursor
Add to ~/.cursor/mcp.json (or .cursor/mcp.json in a project):
{
"mcpServers": {
"adsumo": {
"url": "https://www.adsumo.ai/api/mcp"
}
}
}Reload, then run an Adsumo tool to sign in and approve access.
VS Code
Add to .vscode/mcp.json in your project root:
{
"servers": {
"adsumo": {
"type": "http",
"url": "https://www.adsumo.ai/api/mcp"
}
}
}Codex
Add to ~/.codex/config.toml:
[mcp_servers.adsumo]
url = "https://www.adsumo.ai/api/mcp"Manus
- Open Settings → Integrations → Custom MCP Servers.
- Click Add Server.
- Paste the connector URL above as the Server URL.
- Save and connect, then sign in and approve access.
Perplexity
Requires a paid Perplexity plan.
- Open Settings → Connectors and click Add custom connector.
- Paste the connector URL above and choose Streamable HTTP as the transport.
- Connect, then sign in and approve access.
Any other MCP client
Any client that supports custom MCP connectors over HTTP with OAuth can connect — including OpenClaw, Hermes, and others. Add the connector URL above, run a tool, and complete the browser sign-in. Do not add an Authorization header; the OAuth flow handles authentication.
Verifying the connection
Once configured, ask your AI tool to run the get_credits tool. If the connection is working, it returns your team's credit balance:
{
"credits_used": 45,
"credits_limit": 300,
"credits_remaining": 255
}If it doesn't work, check that:
- You completed the browser sign-in and approved access.
- You used the exact connector URL with no
Authorizationheader. - For generation, your team is on a paid plan — read-only tools (brands, products, credits, ad library) work on any plan, but
generate_image,generate_ai_video, and other generation tools need an active subscription.
If tool calls suddenly start failing after working before, your access token may have expired. Re-run a tool to trigger a fresh sign-in (some MCP clients don't yet refresh tokens automatically).