Multi-account Google Ads MCP server
Project description
mcp-google-ads
Multi-account Google Ads MCP server. Connect any number of Google Ads accounts to Claude, Cursor, Codex, or any MCP-compatible AI assistant — query campaign performance, keywords, search terms, and account analytics by name in the same session.
# Install: uvx mcp-google-ads-multi
# Ask your AI:
"Show me campaign performance for account my-client last month"
"What search terms drove conversions for client-acme in Q2?"
"Compare my-account's spend between January and February"
"Which keywords have quality scores below 5 for campaign 123?"
Why this one?
Most Google Ads MCP servers support one account per server process. This one lets you configure multiple accounts and switch between them per tool call — no restart needed.
| Feature | This server | Others |
|---|---|---|
| Multiple accounts | Yes — named, switchable | No — one per process |
| OAuth + service account | Both, mixed per account | Usually one type |
| Quality score data | Yes | Rarely |
| Search terms report | Yes | Sometimes |
| Rate limit retry | Yes — exponential backoff | No |
| SSE transport (remote) | Yes | Varies |
Quickstart
1. Get a developer token — apply at Google Ads API Center (free, ~3 business days)
2. Create OAuth credentials — Google Cloud Console → Enable Google Ads API → Credentials → OAuth client ID → Desktop app
3. Create your accounts config:
mkdir -p ~/.config/mcp-google-ads
cp accounts.example.json ~/.config/mcp-google-ads/accounts.json
# Edit it — add your accounts
4. Add to your MCP client config:
{
"mcpServers": {
"google-ads": {
"command": "uvx",
"args": ["mcp-google-ads-multi"],
"env": {
"GOOGLE_ADS_DEVELOPER_TOKEN": "your-developer-token",
"GOOGLE_ADS_ACCOUNTS_CONFIG": "/Users/you/.config/mcp-google-ads/accounts.json"
}
}
}
}
5. Restart your AI client. Done.
Accounts config
{
"default": "my-account",
"accounts": {
"my-account": {
"type": "oauth",
"client_id": "YOUR_CLIENT_ID.apps.googleusercontent.com",
"client_secret": "YOUR_CLIENT_SECRET",
"token_file": "~/.config/mcp-google-ads/my-account.token"
},
"client-acme": {
"type": "oauth",
"client_id": "YOUR_CLIENT_ID.apps.googleusercontent.com",
"client_secret": "YOUR_CLIENT_SECRET",
"token_file": "~/.config/mcp-google-ads/client-acme.token"
}
}
}
Set GOOGLE_ADS_DEVELOPER_TOKEN in your environment. All other credentials stay local.
Available tools
| Tool | What it does |
|---|---|
list_accounts |
Show all configured accounts |
set_default_account |
Change the default account |
list_customers |
List all accessible Google Ads accounts under your login |
get_account_summary |
Total clicks, cost, conversions for a period |
list_campaigns |
All campaigns with status, budget, 30-day metrics |
get_campaign_performance |
Campaign metrics for any date range |
compare_periods |
Two date ranges side-by-side with deltas |
get_keyword_performance |
Keyword metrics + quality scores |
search_terms_report |
Actual search queries that triggered your ads |
get_ad_performance |
Ad-level CTR and conversions |
Environment variables
| Variable | Default | Description |
|---|---|---|
GOOGLE_ADS_DEVELOPER_TOKEN |
required | Your Google Ads API developer token |
GOOGLE_ADS_ACCOUNTS_CONFIG |
~/.config/mcp-google-ads/accounts.json |
Path to accounts config |
MCP_TRANSPORT |
stdio |
Set to sse for remote deployment |
MCP_HOST |
127.0.0.1 |
SSE bind host |
MCP_PORT |
3001 |
SSE bind port |
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_google_ads_multi-0.1.0.tar.gz.
File metadata
- Download URL: mcp_google_ads_multi-0.1.0.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e8069d0610e0129f6878ef265ac746c8abd197b0bd94bc668f8a07faaefc827
|
|
| MD5 |
256a5ec7f3a9d73c3bffe6f140296187
|
|
| BLAKE2b-256 |
c70bd2d228ceb54273ba00cd4e5447f406ed4f9ad7f52f4763c1c7aef7040f4b
|
File details
Details for the file mcp_google_ads_multi-0.1.0-py3-none-any.whl.
File metadata
- Download URL: mcp_google_ads_multi-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d15de5841ac91f394acdfca74b61b750748c866d9fe86c359f90007659062b60
|
|
| MD5 |
d9c92540a98438c8e841e666d32caf1d
|
|
| BLAKE2b-256 |
355cee1db4968403ef9c79bb414bea7bc6555088fc24f7e92e322fa631c39501
|