Skip to main content
This page walks you through connecting your AI assistant to AdAdvisor’s MCP server. Pick your client below and follow the instructions.

MCP Server URL

All clients connect to the same server:
https://d3ih39u72cibno.cloudfront.net/mcp

Client setup

Claude Code runs in the terminal and supports both OAuth and API key authentication.Option 1: OAuth (recommended)Run this command to add the server:
claude mcp add adadvisor \
  --transport http \
  https://d3ih39u72cibno.cloudfront.net/mcp
The next time you start a conversation and a tool from AdAdvisor is used, Claude Code will open your browser so you can log in. After that, you’re all set.Option 2: API KeyIf you prefer using an API key, run:
claude mcp add adadvisor \
  --transport http \
  https://d3ih39u72cibno.cloudfront.net/mcp \
  -- --header "Authorization: Bearer YOUR_API_KEY"
Or add it to your .mcp.json file in your project root:
.mcp.json
{
  "mcpServers": {
    "adadvisor": {
      "type": "http",
      "url": "https://d3ih39u72cibno.cloudfront.net/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Verifying the connection

After adding the server, try asking your AI assistant something about your ad data. For example:
What campaigns are currently running in my ad account?
If everything is set up correctly, the assistant will connect to AdAdvisor and return your campaign data.
If you get an authentication error, double-check that your API key is correct and hasn’t been revoked. You can verify active keys in Settings > MCP Server in AdAdvisor.

Finding the setup instructions in AdAdvisor

You can also find these instructions directly in the app. Go to Settings > MCP Server and scroll down to the “Quick Start” section. Select your client from the dropdown and the instructions (with code blocks you can copy) will appear.
MCP quick start
Last modified on February 28, 2026