@getmcpads/google-ads-mcp-server 1.0.1 → 2.0.0
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/CHANGELOG.md +20 -0
- package/README.md +139 -106
- package/dist/cli.js +1649 -423
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1658 -432
- package/dist/index.js.map +1 -1
- package/package.json +15 -8
- package/server-card.json +4461 -0
- package/server.json +61 -0
package/server.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "com.getmcpads/google-ads",
|
|
4
|
+
"title": "Google Ads",
|
|
5
|
+
"description": "Google Ads MCP server: 35 read tools, 10 opt-in preview-first writes.",
|
|
6
|
+
"version": "2.0.0",
|
|
7
|
+
"websiteUrl": "https://www.getmcpads.com/tools/google-ads",
|
|
8
|
+
"repository": {
|
|
9
|
+
"url": "https://github.com/getmcpads-com/google-ads-mcp-server",
|
|
10
|
+
"source": "github"
|
|
11
|
+
},
|
|
12
|
+
"packages": [
|
|
13
|
+
{
|
|
14
|
+
"registryType": "npm",
|
|
15
|
+
"registryBaseUrl": "https://registry.npmjs.org",
|
|
16
|
+
"identifier": "@getmcpads/google-ads-mcp-server",
|
|
17
|
+
"version": "2.0.0",
|
|
18
|
+
"transport": {
|
|
19
|
+
"type": "stdio"
|
|
20
|
+
},
|
|
21
|
+
"environmentVariables": [
|
|
22
|
+
{
|
|
23
|
+
"name": "GOOGLE_ADS_DEVELOPER_TOKEN",
|
|
24
|
+
"description": "Google Ads API developer token, Basic Access or above.",
|
|
25
|
+
"isRequired": true,
|
|
26
|
+
"isSecret": true
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "GOOGLE_ADS_CLIENT_ID",
|
|
30
|
+
"description": "OAuth client ID.",
|
|
31
|
+
"isRequired": true,
|
|
32
|
+
"isSecret": false
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "GOOGLE_ADS_CLIENT_SECRET",
|
|
36
|
+
"description": "OAuth client secret.",
|
|
37
|
+
"isRequired": true,
|
|
38
|
+
"isSecret": true
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "GOOGLE_ADS_REFRESH_TOKEN",
|
|
42
|
+
"description": "OAuth refresh token.",
|
|
43
|
+
"isRequired": true,
|
|
44
|
+
"isSecret": true
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "GOOGLE_ADS_LOGIN_CUSTOMER_ID",
|
|
48
|
+
"description": "Manager (MCC) account ID, when the customer sits under one.",
|
|
49
|
+
"isRequired": false,
|
|
50
|
+
"isSecret": false
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "GOOGLE_ADS_ENABLE_WRITES",
|
|
54
|
+
"description": "Set to 1 to expose 10 write tools. Default calls preview; confirm:true applies changes.",
|
|
55
|
+
"isRequired": false,
|
|
56
|
+
"isSecret": false
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
}
|