Connect Addie to your AI client
Addie runs on a hosted MCP endpoint athttps://agenticadvertising.org/mcp. Most MCP clients that speak streamable HTTP can connect — Claude Desktop, Claude Code, ChatGPT, and custom clients built on the MCP SDK. This page covers the install steps for each, plus how to recover from the most common failure modes.
For end-user help with what Addie can do, see AgenticAdvertising.org for members and the Addie Tool Reference.
What the MCP connection exposes
Yes, Addie is available through MCP. The hosted server exposes her conversational interface as thechat_with_addie tool. Send a message and, for a multi-turn conversation, an optional history array:
chat_with_addie returns a response plus a tools_used list. It can search official documentation, public code repositories, and the public member, agent, and publisher directories while composing its answer. The MCP server also exposes specialized directory, validation, and agent-testing tools for clients that prefer structured calls. Tool discovery shows the server’s complete catalog; individual tools can still require member or organization permissions.
Authentication at a glance
The endpoint requires OAuth 2.1 user authentication on every request. Sign in with your AgenticAdvertising.org email; compatible clients handle the authorization flow and token refresh. Organization API keys authenticate the REST API, not MCP, and/mcp rejects them.
For the underlying OAuth surface (authorization server metadata, dynamic client registration, scopes), see the Reference URLs at the bottom of this page.
Claude Desktop
Claude Desktop’s built-in Connectors UI is the smoothest path. Anthropic hosts the OAuth proxy, so you don’t manage tokens yourself. Custom connectors require a paid Claude plan (Pro, Max, Team, or Enterprise).- Open Claude Desktop → Settings → Connectors.
- Click Add custom connector (or Connect → custom).
- In the dialog, set Name =
Addie, Remote MCP server URL =https://agenticadvertising.org/mcp, then click Add. - Sign in with your AgenticAdvertising.org email when the browser opens.
- Claude Desktop shows Addie as connected. Tools appear in the chat tool picker.
ChatGPT
ChatGPT supports remote MCP via the Connectors feature. Custom MCP servers require a paid plan (Pro, Business, Enterprise) — Plus and Free won’t see this option.- Open ChatGPT → Settings → Connectors → Advanced → enable Developer mode.
- Click Create (or Add MCP server), choose type MCP.
- URL:
https://agenticadvertising.org/mcp, Authentication: OAuth. - Complete sign-in in the browser.
Claude Code
Claude Code (the CLI) has a known bug where OAuth completes but the post-auth reconnect fails, leaving the server marked asfailed. This affects every remote MCP that uses streamable-HTTP + OAuth, not just Addie. Until Anthropic ships a fix, use one of the two paths below.
Recommended: stdio shim via mcp-remote
mcp-remote is a small npm proxy that runs as a local stdio MCP server, handles OAuth itself, and forwards calls to the remote endpoint. It sidesteps Claude Code’s broken reconnect path entirely. Requires Node 18 or newer.
/mcp inside Claude Code and complete sign-in in the browser. /mcp should show addie ✓ connected and Addie’s tools become available immediately. No restart required.
Alternative: native HTTP transport
If you’d rather use the native transport:/mcp, complete sign-in. If you see “Authentication successful, but server reconnection failed”, fully quit Claude Code (⌘Q on macOS, not just close window) and relaunch. Sometimes a single restart picks up the stored tokens; often it doesn’t. If one restart doesn’t recover, fall back to the mcp-remote path above.
Other MCP clients
Any MCP client that speaks streamable HTTP + OAuth 2.1 can connect. Generic config:WWW-Authenticate: Bearer resource_metadata=..., pointing the client at /.well-known/oauth-protected-resource/mcp, which lists the authorization server.
Troubleshooting
”Authentication successful, but server reconnection failed”
This is Claude Code bug #10250. The OAuth flow worked — your tokens are saved in~/.claude/.credentials.json — but the client failed to reconnect with them. A full restart sometimes recovers; the reliable workaround is the mcp-remote install path above.
This is not Addie-specific: the same error affects Notion, Supabase, Slack, New Relic, and other remote MCP servers using OAuth.
401 returned after OAuth completes
If your client says it has a valid token but every request to/mcp returns 401:
- Check the token is fresh. WorkOS access tokens are short-lived; refresh tokens last longer. Most clients auto-refresh; some don’t. Force re-auth.
- Check that the bearer token came from the MCP OAuth flow. Organization API keys are REST-only credentials and will be rejected by
/mcp. - Test the token manually:
A 401 here means the token is rejected at the server; a 200 means your client is mishandling auth.
Force a re-auth
When stored tokens go stale and the client won’t re-prompt:- Claude Code:
rm ~/.claude/.credentials.jsonthen run/mcp. (This clears OAuth state for all MCP servers; back it up first if you have several.) - Claude Desktop: remove the Addie connector and re-add it.
- ChatGPT: disconnect the connector in settings and re-add.
”I configured Addie in ~/.claude/settings.json and it’s not loading”
Claude Code reads MCP servers from ~/.claude.json (the global config) or .mcp.json (project-scoped) — not from settings.json. settings.json holds permissions, hooks, and env vars only. Use claude mcp add rather than hand-editing.
Where to find Claude Code logs
On macOS:tail -f ~/Library/Logs/Claude/mcp*.log. Run your client and trigger the failing flow while tailing — the actual error (token rejected, transport mismatch, network failure) shows up there. Redact tokens before sharing.
Reference URLs
- MCP endpoint:
https://agenticadvertising.org/mcp - Authorization server metadata (RFC 8414):
https://agenticadvertising.org/.well-known/oauth-authorization-server - Protected resource metadata (RFC 9728):
https://agenticadvertising.org/.well-known/oauth-protected-resource/mcp - Dynamic client registration (RFC 7591):
POST /register - Issue tracker: github.com/adcontextprotocol/adcp/issues