google-ads-mcp-server
Provides tools for interacting with Google Ads, enabling querying performance data with GAQL and managing budgets, campaigns, ad groups, keywords, and bids, with dry-run validation before applying changes.
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 performance for my campaigns over the last 7 days"
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 Model Context Protocol (MCP) server for Google Ads with both read and write access. Connect it to Claude (or any MCP client) and pull reports with GAQL, then actually manage the account — create and adjust budgets, campaigns, ad groups, bids, and keywords — in natural language, using your own Google Ads credentials.
Google's own official Google Ads MCP server is read-only. This one adds the write side, and does it carefully.
🛑 Writes spend real money — how the safety guard works
Google Ads changes cost money, so every write tool is a dry run by default. When you call a write tool without confirm=True, the change is sent to the Google Ads API with its validate_only flag: the API checks that the change is valid but does not apply it, and the tool tells you it was validated only. The change is applied only when you call the same tool again with confirm=True.
That means the safe loop is always: call once to validate → review → call again with confirm=True to apply. New campaigns are also created PAUSED by default so nothing starts serving unexpectedly.
Related MCP server: google-ads-mcp
Features
Read
ads_whoamiandlist_accessible_customers— verify credentials and see which accounts you can reachsearch— run any GAQL query (the general-purpose read tool)Convenience listers: campaigns, ad groups, ads, budgets, keywords
campaign_performance— impressions/clicks/cost/conversions by campaign over a date range
Write (dry run unless confirm=True)
Create and update campaign budgets
Create campaigns (paused Search + Manual CPC by default) and set campaign status (enable/pause/remove)
Create ad groups, set ad group status, and change ad group bids
Add keywords and set keyword status
Requirements
Python 3.10+
A Google Ads developer token. Test tokens only work against test accounts; to read or write real accounts you need Basic access, which is a short application in the API Center of a manager (MCC) account.
Credentials — either OAuth2 (client id, client secret, refresh token) or a service account with domain-wide delegation (Google Workspace).
Your manager account id as the login customer id.
Google setup (one time)
In a Google Ads manager (MCC) account, open API Center and apply for a developer token with Basic access.
In the Google Cloud Console, create a project and enable the Google Ads API.
Create OAuth 2.0 credentials (Desktop app) and generate a refresh token for an account that can access your Google Ads accounts. (Google's OAuth desktop guide walks through this; the
google-adslibrary ships a helper script for the refresh token.)Note your login customer id (the MCC id, digits only).
Alternatively, use a service account with domain-wide delegation on a Workspace and point the config at its key — see the google-ads configuration docs.
Install
Using uv (recommended):
git clone https://github.com/burhan29ee/google-ads-mcp-server.git
cd google-ads-mcp-server
uv venv --python 3.12 .venv
uv pip install --python .venv/bin/python -e .Or with pip:
python3 -m venv .venv && source .venv/bin/activate
pip install -e .Configure your MCP client
The server reads the standard GOOGLE_ADS_* environment variables (or a google-ads.yaml via GOOGLE_ADS_CONFIGURATION_FILE_PATH). For Claude Desktop, edit claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json; Windows: %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"google-ads": {
"command": "/absolute/path/to/google-ads-mcp-server/.venv/bin/python",
"args": ["-m", "google_ads_mcp_server.server"],
"env": {
"GOOGLE_ADS_DEVELOPER_TOKEN": "your-developer-token",
"GOOGLE_ADS_LOGIN_CUSTOMER_ID": "1234567890",
"GOOGLE_ADS_CLIENT_ID": "your-oauth-client-id.apps.googleusercontent.com",
"GOOGLE_ADS_CLIENT_SECRET": "your-oauth-client-secret",
"GOOGLE_ADS_REFRESH_TOKEN": "your-oauth-refresh-token"
}
}
}
}Restart the client and start with "run ads_whoami" to confirm access. Then try "show my top campaigns by spend over the last 30 days" or "pause campaign 12345" (which will dry-run first).
Tool reference
Tool | Type | What it does |
| read | Show config (masked token, login id) and accessible accounts |
| read | Customer resource names this login can access |
| read | Run any GAQL query |
| read | Campaigns with status, channel, budget |
| read | Ad groups (optionally by campaign) |
| read | Ads (optionally by ad group) |
| read | Budgets with amount and delivery |
| read | Keyword criteria (optionally by ad group) |
| read | Per-campaign metrics over a date range |
| write | Create a budget (dry run unless |
| write | Change a budget amount (dry run unless |
| write | Create a paused Search campaign (dry run unless |
| write | Enable / pause / remove a campaign (dry run unless |
| write | Create an ad group (dry run unless |
| write | Enable / pause / remove an ad group (dry run unless |
| write | Change an ad group's max CPC (dry run unless |
| write | Add a keyword (dry run unless |
| write | Enable / pause / remove a keyword (dry run unless |
Amounts and bids are in micros (1,000,000 micros = 1 unit of the account currency; e.g. a $5.00 daily budget is 5000000).
Development
pip install -e ".[dev]"
ruff check .
pytest -qSee CONTRIBUTING.md for the full workflow.
Security
Credentials here can change spend — treat them like production secrets. Never commit them (the .gitignore blocks key files, .env, and google-ads.yaml), grant least access, prefer a test account while evaluating, and keep the dry-run guard: review the validate_only result before re-running with confirm=True. See SECURITY.md.
Notes
The
mcpdependency is pinned to>=1.2,<2. The 2.0 SDK reorganized its API and removedmcp.server.fastmcp, which this server uses.This is an independent open-source project and is not affiliated with or endorsed by Google. It is separate from Google's official read-only google-ads-mcp.
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityFmaintenanceA read-write MCP server for managing Google Ads campaigns, ad groups, keywords, and ads via natural language.122The Unlicense

google-ads-mcpofficial
Alicense-qualityAmaintenanceMCP server that provides tools and resources for interacting with Google Ads API, enabling search, metadata retrieval, and account management through natural language.843Apache 2.0- Flicense-qualityDmaintenanceMCP server that lets any LLM manage Google Ads campaigns from the terminal. Supports read and write operations.
- Flicense-qualityCmaintenanceA read-only MCP server for the Google Ads API, exposing reporting tools for account summaries, campaigns, performance, search terms, and conversion actions. Enables natural-language queries to Google Ads data without write access.
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
MCP server for Google search results via SERP API
GibsonAI MCP server: manage your databases with natural language
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/burhan29ee/google-ads-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server