-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
66 lines (66 loc) · 2.17 KB
/
Copy pathserver.json
File metadata and controls
66 lines (66 loc) · 2.17 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
57
58
59
60
61
62
63
64
65
66
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.kiwoongeom/gmc-mcp",
"description": "MIT-licensed pip-installable MCP for Google Merchant Center on Merchant API v1 (126 tools).",
"repository": {
"url": "https://github.com/kiwoongeom/gmc-mcp",
"source": "github"
},
"version": "0.2.5",
"packages": [
{
"registryType": "pypi",
"identifier": "gmc-mcp",
"version": "0.2.5",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "GMC_ACCOUNT_ID",
"description": "Your 10-digit Google Merchant Center account ID (top-right of merchants.google.com).",
"isRequired": true,
"format": "string",
"isSecret": false
},
{
"name": "GMC_SERVICE_ACCOUNT_KEY",
"description": "Absolute path to a Google Cloud service-account JSON key file. The service account must be added as Admin in Merchant Center.",
"isRequired": false,
"format": "filepath",
"isSecret": true
},
{
"name": "GMC_OAUTH_TOKEN",
"description": "Absolute path to an OAuth user-token JSON file produced by `gmc-mcp auth-init`. Use this OR GMC_SERVICE_ACCOUNT_KEY.",
"isRequired": false,
"format": "filepath",
"isSecret": true
},
{
"name": "GMC_SUBACCOUNT_ID",
"description": "Optional sub-account ID when operating an MCA (Multi-Client Account).",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "GMC_DRY_RUN",
"description": "When 'true', writes are logged to the audit log only (no actual API calls).",
"isRequired": false,
"format": "string",
"isSecret": false,
"default": "false"
},
{
"name": "GMC_LOG_LEVEL",
"description": "Log verbosity: DEBUG / INFO / WARNING / ERROR.",
"isRequired": false,
"format": "string",
"isSecret": false,
"default": "INFO"
}
]
}
]
}