agentsclimarketplace

Google ads mcp

Skill itallstartedwithaidea/google-ads-skills/skills/google-ads-mcp

Google Ads Agent Skills for Claude — campaign analysis, account auditing, safe write ops, PPC math, and MCP server integration

Install
npx -y skills add itallstartedwithaidea/google-ads-skills --skill google-ads-mcp

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 22 stars22 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

MCP (Model Context Protocol) server configuration for live Google Ads API access. Activate when the user wants to connect Claude to their Google Ads account via MCP, set up the google-ads-mcp server, or configure credentials for live API queries. Provides setup instructions, server configuration, and troubleshooting.

SKILL.md

5.0 KB, as published. Nobody here has run it

Google Ads MCP Server

This skill configures the google-ads-mcp server for live Google Ads API access through Claude Code, Claude Desktop, Cursor, or any MCP client.

Quick Setup

1. Install

pip install git+https://github.com/itallstartedwithaidea/google-ads-mcp.git

2. Configure Credentials

Create a .env file or set environment variables:

GOOGLE_ADS_DEVELOPER_TOKEN=your-developer-token
GOOGLE_ADS_CLIENT_ID=your-oauth-client-id
GOOGLE_ADS_CLIENT_SECRET=your-oauth-client-secret
GOOGLE_ADS_REFRESH_TOKEN=your-refresh-token
GOOGLE_ADS_LOGIN_CUSTOMER_ID=123-456-7890

Or point to an existing google-ads.yaml:

GOOGLE_ADS_CREDENTIALS=/path/to/google-ads.yaml
GOOGLE_ADS_LOGIN_CUSTOMER_ID=123-456-7890

3. Run

python -m ads_mcp.server

Claude Code Configuration

Place .mcp.json in your project root:

{
  "mcpServers": {
    "google-ads": {
      "type": "stdio",
      "command": "python",
      "args": ["-m", "ads_mcp.server"],
      "env": {
        "GOOGLE_ADS_CREDENTIALS": "${GOOGLE_ADS_CREDENTIALS}",
        "GOOGLE_ADS_LOGIN_CUSTOMER_ID": "${GOOGLE_ADS_LOGIN_CUSTOMER_ID}"
      }
    }
  }
}

Claude Code auto-discovers .mcp.json and loads the server on startup.

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "google-ads": {
      "command": "python",
      "args": ["-m", "ads_mcp.server"],
      "env": {
        "GOOGLE_ADS_CREDENTIALS": "/path/to/google-ads.yaml",
        "GOOGLE_ADS_LOGIN_CUSTOMER_ID": "123-456-7890"
      }
    }
  }
}

Available Tools (29)

Read Tools (9)

ToolDescription
list_accessible_customersList all accessible customer accounts
list_accountsList accounts under an MCC with details
execute_gaqlRun custom GAQL queries
get_campaign_performanceCampaign metrics with date range
get_keyword_performanceKeyword metrics and quality scores
get_search_termsSearch term report with wasted spend
get_ad_performanceAd creative performance
get_account_budget_summaryBudget utilization analysis
generate_keyword_ideasKeyword Planner search volume and CPC

Audit Tools (7)

ToolDescription
get_auction_insightsCompetitive auction data
get_change_historyRecent account changes
get_device_performancePerformance by device type
get_geo_performancePerformance by location
get_recommendationsGoogle's optimization suggestions
get_pmax_performancePerformance Max campaign data
get_impression_shareImpression share and lost opportunity

Write Tools (11) — dry-run by default

ToolDescription
update_campaign_budgetChange daily budget
update_campaign_statusPause or enable a campaign
update_ad_group_statusPause or enable an ad group
update_keyword_bidChange keyword CPC bid
add_keywordsAdd keywords to an ad group
add_negative_keywordsAdd negative keywords
remove_negative_keywordRemove a negative keyword
create_campaignCreate a new campaign (paused)
create_ad_groupCreate a new ad group
switch_bidding_strategyChange bidding strategy
generic_mutateRaw Google Ads API mutation

All write tools use confirm=False by default (dry-run preview). Pass confirm=True only after reviewing the preview.

Doc Tools (2)

ToolDescription
get_gaql_referenceGAQL syntax and field reference
get_workflow_guideStep-by-step workflow instructions

Credential Sources

ValueWhere to Get It
Developer Tokenads.google.com → Tools & Settings → API Center
Client IDconsole.cloud.google.com → Credentials
Client Secretconsole.cloud.google.com → Credentials
Refresh TokenOAuth Playground or google-ads Python auth helper
Login Customer IDYour MCC account ID (top of Google Ads UI)

Troubleshooting

ProblemFix
UNAUTHENTICATEDRefresh token expired — regenerate via OAuth Playground
PERMISSION_DENIEDAccount not accessible under your MCC
DEVELOPER_TOKEN_NOT_APPROVEDApply for Basic Access at ads.google.com → API Center
Rate limit exceededBasic Access: 15K ops/day. Use LIMIT clauses and filters.

Related

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.