Google Ads MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Google Ads MCP Servershow me my active campaigns"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Google Ads MCP Server
A local MCP server for reading and writing the Google Ads API. Full campaign management with a dry-run/confirm safety flow on every write.
Prerequisites
Google Ads Manager (MCC) account with a developer token. Check its access level: Google Ads UI -> Tools & Settings -> Setup -> API Center.
Test: can only call test accounts. Apply for Basic access to touch live accounts (approval can take a few days).
Basic/Standard: ready for live accounts.
A Google Cloud project with the Google Ads API enabled and an OAuth2 client of type Desktop app (gives you a client ID and client secret).
Related MCP server: Google Ads MCP Server (Fork with Write Tools)
Setup
python -m venv .venv
. .venv/Scripts/activate # Windows PowerShell: .venv\Scripts\Activate.ps1
pip install -e ".[dev]"
# Mint a refresh token (one-off browser consent):
python scripts/generate_refresh_token.py --client-id XXX --client-secret YYY
cp .env.example .env # then fill in every valueIf your OAuth consent screen is still in testing mode, add the Google account you sign in with as a test user first (Cloud Console -> APIs & Services -> OAuth consent screen -> Audience), otherwise consent fails with a verification error.
Once .env holds the client ID and secret, python scripts/remint_refresh_token.py
re-mints an expired or revoked refresh token and rewrites .env in place, without
printing the secret.
Never commit .env; it is gitignored, and it is the only place real credentials
should ever live.
.env keys: GOOGLE_ADS_DEVELOPER_TOKEN, GOOGLE_ADS_CLIENT_ID,
GOOGLE_ADS_CLIENT_SECRET, GOOGLE_ADS_REFRESH_TOKEN,
GOOGLE_ADS_LOGIN_CUSTOMER_ID (your MCC ID, dashes optional, shown
top-right in the Google Ads UI when logged into the manager account).
Run the tests
pip install -e ".[dev]"
pytest -vRegister with Claude Code
Use the venv's absolute python path so registration works regardless of which
directory Claude Code is launched from (the server also resolves .env from the
project root, not the cwd):
# Windows
claude mcp add google-ads -- "<REPO_PATH>\.venv\Scripts\python.exe" -m google_ads_mcp.server
# macOS / Linux
claude mcp add google-ads -- "<REPO_PATH>/.venv/bin/python" -m google_ads_mcp.serverAdd --scope user to make the tools available in every project rather than just this one.
Write safety
Every write tool defaults to a preview: it validates the change with the API's
validate_only and returns a confirmation_token. To apply, call the same tool again
with commit=true and that token. The committed operation is byte-for-byte what was
previewed. Nothing spends money until you confirm.
Tools
Read: list_accounts, run_gaql, get_campaigns, get_ad_groups,
get_keywords, get_performance.
Write (preview -> confirm): create_campaign_budget, create_campaign,
update_budget, update_campaign_status, create_ad_group,
update_ad_group_status, create_responsive_search_ad, add_keywords,
add_negative_keywords, apply_mutate.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/WEYERSK/Google-Ads-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server