Google ads mcp
Use when the user needs to SET UP, CONFIGURE, or TROUBLESHOOT MCP server connections for Google Ads or any advertising platform. Trigger for: MCP setup, MCP config, API credentials, OAuth, developer token, authentication errors, connection issues, 'connect to Google Ads', 'set up MCP', or any MCP server configuration question.From its SKILL.md
npx -y skills add itallstartedwithaidea/MiniAgent --skill google-ads-mcpAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 9 stars9 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.
SKILL.md
1.8 KB, 375 tokens by cl100k_base, as published. Nobody here has run it
Google Ads MCP Setup Skill
Guide for connecting MiniAgent's MCP servers to real ad platform APIs.
Claude Code Setup
claude mcp add miniagent-google -- python -m miniagent.mcp.google_ads
Or add to .mcp.json:
{
"mcpServers": {
"miniagent-google": {
"command": "python",
"args": ["-m", "miniagent.mcp.google_ads"],
"env": {
"GOOGLE_ADS_DEVELOPER_TOKEN": "your-token",
"GOOGLE_ADS_CLIENT_ID": "your-client-id.apps.googleusercontent.com",
"GOOGLE_ADS_CLIENT_SECRET": "your-secret",
"GOOGLE_ADS_REFRESH_TOKEN": "your-refresh-token",
"GOOGLE_ADS_CUSTOMER_ID": "1234567890"
}
}
}
}
Getting Credentials
- Developer Token: Google Ads → Tools → API Center → Apply
- OAuth Client: Google Cloud Console → APIs → Credentials → Create OAuth Client ID
- Refresh Token: Run
python -m miniagent.mcp.google_ads --oauthto start the OAuth flow - Customer ID: The 10-digit number in the top-right of Google Ads (no dashes)
Troubleshooting
| Error | Cause | Fix |
|---|---|---|
AUTHENTICATION_ERROR | Bad credentials | Check all 4 env vars are set |
AUTHORIZATION_ERROR | No access to account | Verify customer_id, check MCC access |
DEVELOPER_TOKEN_NOT_APPROVED | Token pending | Apply at Google Ads API Center |
RATE_LIMIT_EXCEEDED | Too many requests | Add retry logic, check quota |
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.