Everything you need to connect AI agents to your ad accounts via MCP.
Connect GravityAds to your AI workflow in under 5 minutes. You'll need an API key from your GravityAds Portal dashboard.
Sign in to the GravityAds Portal → API Keys → Create new key. The raw key is shown once — copy it immediately.
Add GravityAds as an MCP server in your client configuration:
{
"mcpServers": {
"gravityads": {
"url": "https://api.gravityads.dev/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Ask your AI assistant to use GravityAds tools:
"Show me my Google Ads campaign performance for the last 7 days"
"Compare my Meta Ads CPC against industry benchmarks"
"Generate a daily brief for all connected accounts"GravityAds exposes MCP tools for reading ad data, generating insights, and managing controlled actions across platforms.
decision_contextUnified decision context across connected accountscustomer_metric_summaryCustomer-level metric aggregationoptimizer_daily_briefAI-generated daily optimization briefoptimizer_weekly_planWeekly optimization plan with prioritiesbenchmark_compareIndustry benchmark comparisoncandidate_searchFind optimization candidatescandidate_explainDeep-dive explanation of a candidatedata_freshness_checkCheck ETL freshness for each accountcontrolled_draftDraft an optimization changecandidate_preflightValidate a candidate before draftingcontrolled_action_approveApprove a drafted actioncontrolled_action_executeExecute an approved actioncontrolled_action_observeObserve results of an executed actionbusiness_contextManage business context metadataworkbench_contextWorkbench overview for a tenantmarket_signal_snapshotMarket signals for connected accountsIn addition to MCP, GravityAds exposes a full REST API. The OpenAPI schema is the single source of truth.
curl https://api.gravityads.dev/openapi.json | jq .All API requests require authentication via either:
Authorization: Bearer <key> or X-GravityAds-API-Key headercurl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.gravityads.dev/tenant/readiness | jq .