For Claude · ChatGPT · Claude Code · Cursor

Query Advino from your AI.

Advino exposes its monitoring data via Model Context Protocol. Account health, alerts, real ROAS, creative scores — all queryable from Claude or ChatGPT in plain English.

Works alongside Meta's official MCP. Use both in the same session.

What is MCP?

Model Context Protocol is an open standard for letting AI assistants talk to external systems. Anthropic released it in 2024. Claude, ChatGPT, Cursor, and most agent frameworks now speak it.

Meta shipped an MCP server for the Marketing API on April 29, 2026. Their server answers questions like "what did this campaign spend yesterday?" Advino's server answers different questions: "which accounts have an active risk signal?" or "what's the real ROAS gap vs Shopify?"

Sample prompts

Ask in plain English.

"What's my account health across all clients?"

get_account_health

"Show creatives scored below 40 this week."

get_creative_scores

"When was the last Shield auto-pause and why?"

get_alert_historylist_active_shields

"What's my real ROAS vs Meta-reported for Atlas this month?"

get_true_roas

What's available

Plan gating.

Read tools have daily quotas on lower tiers. Write tools require human approval in the Advino app — Claude never silently pauses live campaigns.

ToolTypeTrialSolo $19Studio $49Agency $129Scale $299
get_account_healthread10/day100/day
get_alert_historyread24h30d
list_active_shieldsread
get_creative_scoresread1 acct51540
get_true_roasread
get_shield_rulesread
create_alert_rulewrite
pause_ad_setwriteapprovalapprovalapproval
resume_ad_setwriteapprovalapprovalapproval
bulk_actionwriteapprovalapproval

Install

Three minutes.

  1. Generate a token

    Sign in to Advino, go to Settings → MCP, click "Generate token." Copy the token — it's shown once.
  2. Paste into Claude Desktop config

    Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
    {
      "mcpServers": {
        "advino": {
          "url": "https://mcp.advino.app/sse",
          "headers": {
            "Authorization": "Bearer adv_mcp_live_<your-token>"
          }
        }
      }
    }
  3. Restart Claude

    Quit and reopen Claude Desktop. You should see advino in the MCP server list. Try the prompt "What's my account health?" — it should call get_account_health.

For ChatGPT, Cursor, or Claude Code: same MCP endpoint, same token format. Configure via your client's MCP settings panel. The token authorizes the agency, not the specific app — you can use one token across multiple clients or generate one per device for auditability.