forked from googleads/google-ads-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
56 lines (56 loc) · 1.94 KB
/
server.json
File metadata and controls
56 lines (56 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.ZLeventer/google-ads-mcp",
"title": "Google Ads",
"description": "MCP server for Google Ads — 22 tools for spend diagnosis, impression share, and asset performance.",
"repository": {
"url": "https://github.com/ZLeventer/google-ads-mcp",
"source": "github"
},
"version": "1.0.1",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@zleventer/google-ads-mcp",
"version": "1.0.1",
"transport": { "type": "stdio" },
"environmentVariables": [
{
"name": "GOOGLE_ADS_DEVELOPER_TOKEN",
"description": "Google Ads developer token (apply at https://developers.google.com/google-ads/api/docs/get-started/dev-token)",
"isRequired": true,
"isSecret": true
},
{
"name": "GOOGLE_ADS_CLIENT_ID",
"description": "OAuth 2.0 client ID from Google Cloud Console",
"isRequired": true,
"isSecret": true
},
{
"name": "GOOGLE_ADS_CLIENT_SECRET",
"description": "OAuth 2.0 client secret from Google Cloud Console",
"isRequired": true,
"isSecret": true
},
{
"name": "GOOGLE_ADS_REFRESH_TOKEN",
"description": "OAuth 2.0 refresh token with https://www.googleapis.com/auth/adwords scope",
"isRequired": true,
"isSecret": true
},
{
"name": "GOOGLE_ADS_CUSTOMER_ID",
"description": "Default Google Ads customer ID (numeric, no dashes). Can be overridden per tool call.",
"isRequired": true
},
{
"name": "GOOGLE_ADS_LOGIN_CUSTOMER_ID",
"description": "Manager (MCC) account ID — required only if accessing accounts under an MCC",
"isRequired": false
}
]
}
]
}