Skip to content
VS Code

gmc mcp for VS Code

io.github.kiwoongeom/gmc-mcp

MIT-licensed pip-installable MCP for Google Merchant Center on Merchant API v1 (126 tools).

client:VS Code transport:stdio runtime:pypi

Install gmc mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gmc-account-id",
      "description": "GMC_ACCOUNT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gmc-service-account-key",
      "description": "GMC_SERVICE_ACCOUNT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gmc-oauth-token",
      "description": "GMC_OAUTH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gmc-subaccount-id",
      "description": "GMC_SUBACCOUNT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gmc-dry-run",
      "description": "GMC_DRY_RUN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gmc-log-level",
      "description": "GMC_LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "gmc-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "gmc-mcp"
      ],
      "env": {
        "GMC_ACCOUNT_ID": "${input:gmc-account-id}",
        "GMC_SERVICE_ACCOUNT_KEY": "${input:gmc-service-account-key}",
        "GMC_OAUTH_TOKEN": "${input:gmc-oauth-token}",
        "GMC_SUBACCOUNT_ID": "${input:gmc-subaccount-id}",
        "GMC_DRY_RUN": "${input:gmc-dry-run}",
        "GMC_LOG_LEVEL": "${input:gmc-log-level}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

gmc mcp in other clients