MCP Setup Guide

Connect your Ads Adviser to Claude Desktop or Claude.ai using the Model Context Protocol (MCP)

What is MCP? Model Context Protocol lets Claude AI directly access your marketing data. Instead of copy-pasting numbers, Claude fetches live data from Meta Ads, Google Analytics, WhatsApp, and Instagram on its own — then analyzes it for you.

1

Get Your API Key

Go to the Dashboard → API Keys tab → create a new key. Copy the key immediately — it won't be shown again.

Go to API Keys →
Your MCP Endpoint
https://ads.wapdeskpro.com/mcp/sse
2

Connect Claude Desktop (Mac / Windows)

Open Claude Desktop → Settings → Developer → Edit Config. Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "ads-adviser": {
      "url": "https://ads.wapdeskpro.com/mcp/sse",
      "headers": {
        "x-api-key": "YOUR_API_KEY_HERE"
      }
    }
  }
}

Replace YOUR_API_KEY_HERE with your API key from Step 1. Restart Claude Desktop after saving.

3

Connect Claude.ai Web (Streamable HTTP)

For Claude.ai web app, use the Streamable HTTP endpoint:

{
  "mcpServers": {
    "ads-adviser": {
      "transport": {
        "type": "http",
        "url": "https://ads.wapdeskpro.com/mcp",
        "headers": {
          "Authorization": "Bearer YOUR_API_KEY_HERE"
        }
      }
    }
  }
}
4

Test the Connection

After connecting, try these prompts in Claude:

  • "Show me my connected marketing accounts"
  • "What is my Meta Ads spend for last 7 days?"
  • "Give me a summary of all my marketing performance"
  • "Which ad campaign has the best CTR this month?"

Available MCP Tools

Claude can call these tools to fetch your marketing data:

get_connected_accounts
List all connected platforms
get_account_summary
Full overview of all accounts
get_meta_ads_campaigns
List Meta ad campaigns
get_meta_ads_performance
Spend, CTR, CPC, reach data
get_whatsapp_stats
Phone status & message stats
get_google_analytics
GA4 sessions, users, bounce
get_instagram_insights
Followers, reach, impressions

Verify MCP Server

Test your connection directly:

curl https://ads.wapdeskpro.com/mcp/info