google-ads-write-mcp
MCP server that exposes write operations on Google Ads, enabling management of campaigns, ad groups, keywords, RSA ads, sitelinks, images, Customer Match audiences, and recommendations.
README
google-ads-write-mcp
MCP server that exposes write operations on Google Ads: campaigns, ad groups, keywords, RSA ads, sitelinks, images, Customer Match audiences and recommendations.
Complements the official google-ads MCP (read-only). Use the official
one (or google-ads-kw-mcp) to read data, this one to
write.
Tools (26)
Campaigns
| Tool | What it does |
|---|---|
update_campaign_status |
Pause, enable or remove a campaign |
update_campaign_budget |
Change the daily budget (locates the budget entity automatically) |
Ad groups
| Tool | What it does |
|---|---|
update_ad_group_status |
Pause, enable or remove an ad group |
update_ad_group_cpc_bid |
Change the ad group's max CPC bid |
Keywords
| Tool | What it does |
|---|---|
add_keywords |
Add keywords to an ad group (BROAD/PHRASE/EXACT, optional bid) |
update_keyword_status |
Pause, enable or remove a keyword |
update_keyword_bid |
Change a keyword's CPC bid |
add_negative_keywords |
Add negative keywords at campaign level |
RSA ads
| Tool | What it does |
|---|---|
update_rsa_headlines |
Replace headlines (and optionally descriptions) of an RSA |
Sitelinks
| Tool | What it does |
|---|---|
create_sitelink_asset |
Create a sitelink asset |
link_sitelink_to_campaign |
Link the sitelink to a campaign |
Ad assets
| Tool | What it does |
|---|---|
create_callout_asset |
Create a callout text (max 25 chars) |
create_call_asset |
Create a call extension with a phone number |
create_structured_snippet_asset |
Create a structured snippet (header + list of values) |
link_asset_to_campaign |
Link any asset to a campaign (SITELINK, CALLOUT, CALL, STRUCTURED_SNIPPET, MARKETING_IMAGE…) |
Images
| Tool | What it does |
|---|---|
upload_image_asset |
Download an image from a URL and upload it as an asset (Display/PMax) |
Audiences / Customer Match
| Tool | What it does |
|---|---|
list_user_lists |
List all audiences (remarketing + Customer Match) |
create_customer_match_list |
Create a new Customer Match list |
upload_customer_match_emails |
Upload emails to a list (SHA-256 hashing done automatically) |
Create full campaigns
| Tool | What it does |
|---|---|
create_campaign |
Create a Search or Performance Max campaign (budget, bid, country, language, EU political-ads flag) |
create_ad_group |
Create an ad group inside a Search campaign |
create_rsa |
Create a full RSA ad (3–15 headlines, 2–4 descriptions, URL, display paths) |
create_asset_group |
Create a PMax asset group (headlines, long headlines, descriptions, images, logo) |
Recommendations
| Tool | What it does |
|---|---|
list_recommendations |
List pending recommendations (optional type filter) |
apply_recommendation |
Apply a recommendation |
dismiss_recommendation |
Dismiss a recommendation |
Setup
Same credentials as google-ads-kw-mcp — you can point
both at the same credentials.json.
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
MCP client configuration
{
"mcpServers": {
"google-ads-write": {
"command": "/path/to/.venv/bin/python3",
"args": ["/path/to/google-ads-write-mcp/server.py"],
"env": {
"GOOGLE_ADS_CREDENTIALS_PATH": "~/.config/google-ads-mcp/credentials.json",
"GOOGLE_ADS_DEVELOPER_TOKEN": "<your developer token>",
"GOOGLE_ADS_LOGIN_CUSTOMER_ID": "<your MCC customer id, no dashes>"
}
}
}
}
Confirmation required for critical operations
These tools require confirmed=True. Called without it, they return a JSON
with requires_confirmation: true that the calling agent MUST show to the
user and wait for a response before repeating the call with confirmed=True.
| Tool | When it asks for confirmation |
|---|---|
update_campaign_status |
status = PAUSED or REMOVED |
update_campaign_budget |
always |
update_ad_group_status |
status = REMOVED |
# 1. First call — no confirmed
update_campaign_status(customer_id="1234567890", campaign_id="111222333", status="PAUSED")
# → returns requires_confirmation: true → show it to the user
# 2. Second call — after the user confirms
update_campaign_status(customer_id="1234567890", campaign_id="111222333", status="PAUSED", confirmed=True)
Gotchas found in production use
Auth
- Never use
gcloud auth print-access-token— that token doesn't carry theadwordsscope → 403. The only valid source is therefresh_tokenagainstoauth2.googleapis.com/token, which this server already does correctly.
Negatives vs. positives
- Adding a negative EXACT keyword to an ad group where the same keyword
already exists as a positive EXACT match returns
IMMUTABLE_FIELD. The fix is to pause the positive instead of adding the negative.
Resource names
adGroupCriteriaresource names always need a~between the ad group ID and the criterion ID:customers/{cid}/adGroupCriteria/{ag_id}~{crit_id}.
GAQL field limits
ad_group_criteriondoesn't accept metrics (clicks, cost, conversions) in the same query — querysearch_term_viewseparately for performance data.- Filter
ad_group_criterionby campaign withWHERE ad_group.campaign = 'customers/{cid}/campaigns/{campaign_id}', notcampaign_iddirectly.
Budgets
- The budget is a separate entity (
CampaignBudget). If a campaign shares a budget with others, changing it affects all of them.
contains_eu_political_advertising
- This is an enum (
EuPoliticalAdvertisingStatus), not a bool.Falseserializes asUNSPECIFIED, which the API rejects as "not present". UseDOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISINGexplicitly.
PMax with Brand Guidelines
- If the account has Brand Guidelines enabled, PMax campaigns need a
business_nameand alogo(min. 128×128px, square) linked asCampaignAssetat creation time — not after.
RSA headline updates
- Use
AdService.mutate_ads()with field mask"responsive_search_ad.headlines". UsingAdGroupAdServicewith"ad.responsive_search_ad.headlines"givesIMMUTABLE_FIELD.
Removing a keyword
- Use the
removeoperation onAdGroupCriterionOperation. Trying anupdatewithstatus = REMOVEDgivesINVALID_ENUM_VALUE.
REMOVED resources are immutable
- No write operation works on ad groups, keywords or ads whose parent
campaign has
status = REMOVED(OPERATION_NOT_PERMITTED_FOR_REMOVED_RESOURCE).
Customer Match allowlist
upload_customer_match_emailsfails withCUSTOMER_NOT_ALLOWLISTED_FOR_THIS_FEATUREunless your developer token has explicit Customer Match access.create_customer_match_listworks without it — only the email upload needs the allowlist.
Notes
- Monetary amounts are passed in the account's currency units and converted to micros internally (1 unit = 1,000,000 micros).
customer_idis always passed without dashes.update_rsa_headlinesreplaces ALL current headlines — pass the full desired list, not just the new ones.- Customer Match lists can take up to 48h to process on Google's side.
License
MIT — see LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。