mcp-google-ads 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/build-info.json +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# MCP Google Ads Server
|
|
2
2
|
|
|
3
|
-
An MCP (Model Context Protocol) server for the Google Ads API with built-in safeguards for review before changes go live. Production-proven with MCC (Manager Account) support,
|
|
3
|
+
An MCP (Model Context Protocol) server for the Google Ads API with built-in safeguards for review before changes go live. Production-proven with MCC (Manager Account) support, 34 tools for campaign management, reporting, and optimization.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
@@ -133,7 +133,7 @@ Restart Claude Code.
|
|
|
133
133
|
5. Claude enables (requires your approval prompt)
|
|
134
134
|
```
|
|
135
135
|
|
|
136
|
-
### Available Tools (
|
|
136
|
+
### Available Tools (34)
|
|
137
137
|
|
|
138
138
|
#### Context & Discovery
|
|
139
139
|
| Tool | Description |
|
package/dist/build-info.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"sha":"
|
|
1
|
+
{"sha":"5a28978","builtAt":"2026-04-09T20:25:53.245Z"}
|
package/dist/index.js
CHANGED
|
@@ -233,7 +233,7 @@ class GoogleAdsManager {
|
|
|
233
233
|
query += ` AND campaign.id = ${sanitizeNumericId(options.campaignId)}`;
|
|
234
234
|
}
|
|
235
235
|
if (options.adGroupId) {
|
|
236
|
-
query += ` AND ad_group.id = ${options.adGroupId}`;
|
|
236
|
+
query += ` AND ad_group.id = ${sanitizeNumericId(options.adGroupId)}`;
|
|
237
237
|
}
|
|
238
238
|
query += ` ORDER BY campaign.name, ad_group.name`;
|
|
239
239
|
const result = await withResilience(() => customer.query(query), "listAds");
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-google-ads",
|
|
3
3
|
"mcpName": "io.github.mharnett/google-ads",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.6",
|
|
5
5
|
"description": "MCP server for Google Ads API with MCC support, 35 tools for campaign management, reporting, and optimization. Safe by default — all changes created PAUSED.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|