PluginBench
MCP Server
Active
MIT

Google Tag Manager MCP MCP Server

io.github.A1-x-Tech/mcp-google-tagmanager

What is the Google Tag Manager MCP MCP server?

MCP server for the Google Tag Manager API v2: containers, workspaces, tags, triggers, publishing.

How to install Google Tag Manager MCP

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • GOOGLE_TAGMANAGER_CLIENT_ID

    Google OAuth client id (refresh-token flow).

  • GOOGLE_TAGMANAGER_CLIENT_SECRET
    secret

    Google OAuth client secret (refresh-token flow). Treat it as a secret.

  • GOOGLE_TAGMANAGER_REFRESH_TOKEN
    secret

    Google OAuth refresh token; exchanged for access tokens automatically. Treat it as a secret.

  • GOOGLE_TAGMANAGER_ACCESS_TOKEN
    secret

    Ready-made OAuth access token (~1h lifetime). Alternative to the client-id/secret/refresh-token trio.

  • GOOGLE_TAGMANAGER_API_BASE

    API root host override.

  • GOOGLE_TAGMANAGER_TIMEOUT_MS

    Per-request timeout in milliseconds.

  • GOOGLE_TAGMANAGER_MAX_RETRIES

    Retries on transient errors (429, quota 403, and 5xx/network for reads).

  • GOOGLE_TAGMANAGER_MIN_INTERVAL_MS

    Minimum spacing between API requests, for the 0.25 QPS quota.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-google-tagmanager": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-google-tagmanager"
      ],
      "env": {
        "GOOGLE_TAGMANAGER_CLIENT_ID": "<YOUR_GOOGLE_TAGMANAGER_CLIENT_ID>",
        "GOOGLE_TAGMANAGER_CLIENT_SECRET": "<YOUR_GOOGLE_TAGMANAGER_CLIENT_SECRET>",
        "GOOGLE_TAGMANAGER_REFRESH_TOKEN": "<YOUR_GOOGLE_TAGMANAGER_REFRESH_TOKEN>",
        "GOOGLE_TAGMANAGER_ACCESS_TOKEN": "<YOUR_GOOGLE_TAGMANAGER_ACCESS_TOKEN>",
        "GOOGLE_TAGMANAGER_API_BASE": "<YOUR_GOOGLE_TAGMANAGER_API_BASE>",
        "GOOGLE_TAGMANAGER_TIMEOUT_MS": "<YOUR_GOOGLE_TAGMANAGER_TIMEOUT_MS>",
        "GOOGLE_TAGMANAGER_MAX_RETRIES": "<YOUR_GOOGLE_TAGMANAGER_MAX_RETRIES>",
        "GOOGLE_TAGMANAGER_MIN_INTERVAL_MS": "<YOUR_GOOGLE_TAGMANAGER_MIN_INTERVAL_MS>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcp-google-tagmanager": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-google-tagmanager"
      ],
      "env": {
        "GOOGLE_TAGMANAGER_CLIENT_ID": "<YOUR_GOOGLE_TAGMANAGER_CLIENT_ID>",
        "GOOGLE_TAGMANAGER_CLIENT_SECRET": "<YOUR_GOOGLE_TAGMANAGER_CLIENT_SECRET>",
        "GOOGLE_TAGMANAGER_REFRESH_TOKEN": "<YOUR_GOOGLE_TAGMANAGER_REFRESH_TOKEN>",
        "GOOGLE_TAGMANAGER_ACCESS_TOKEN": "<YOUR_GOOGLE_TAGMANAGER_ACCESS_TOKEN>",
        "GOOGLE_TAGMANAGER_API_BASE": "<YOUR_GOOGLE_TAGMANAGER_API_BASE>",
        "GOOGLE_TAGMANAGER_TIMEOUT_MS": "<YOUR_GOOGLE_TAGMANAGER_TIMEOUT_MS>",
        "GOOGLE_TAGMANAGER_MAX_RETRIES": "<YOUR_GOOGLE_TAGMANAGER_MAX_RETRIES>",
        "GOOGLE_TAGMANAGER_MIN_INTERVAL_MS": "<YOUR_GOOGLE_TAGMANAGER_MIN_INTERVAL_MS>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp-google-tagmanager": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-google-tagmanager"
      ],
      "env": {
        "GOOGLE_TAGMANAGER_CLIENT_ID": "<YOUR_GOOGLE_TAGMANAGER_CLIENT_ID>",
        "GOOGLE_TAGMANAGER_CLIENT_SECRET": "<YOUR_GOOGLE_TAGMANAGER_CLIENT_SECRET>",
        "GOOGLE_TAGMANAGER_REFRESH_TOKEN": "<YOUR_GOOGLE_TAGMANAGER_REFRESH_TOKEN>",
        "GOOGLE_TAGMANAGER_ACCESS_TOKEN": "<YOUR_GOOGLE_TAGMANAGER_ACCESS_TOKEN>",
        "GOOGLE_TAGMANAGER_API_BASE": "<YOUR_GOOGLE_TAGMANAGER_API_BASE>",
        "GOOGLE_TAGMANAGER_TIMEOUT_MS": "<YOUR_GOOGLE_TAGMANAGER_TIMEOUT_MS>",
        "GOOGLE_TAGMANAGER_MAX_RETRIES": "<YOUR_GOOGLE_TAGMANAGER_MAX_RETRIES>",
        "GOOGLE_TAGMANAGER_MIN_INTERVAL_MS": "<YOUR_GOOGLE_TAGMANAGER_MIN_INTERVAL_MS>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mcp-google-tagmanager": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-google-tagmanager"
      ],
      "env": {
        "GOOGLE_TAGMANAGER_CLIENT_ID": "<YOUR_GOOGLE_TAGMANAGER_CLIENT_ID>",
        "GOOGLE_TAGMANAGER_CLIENT_SECRET": "<YOUR_GOOGLE_TAGMANAGER_CLIENT_SECRET>",
        "GOOGLE_TAGMANAGER_REFRESH_TOKEN": "<YOUR_GOOGLE_TAGMANAGER_REFRESH_TOKEN>",
        "GOOGLE_TAGMANAGER_ACCESS_TOKEN": "<YOUR_GOOGLE_TAGMANAGER_ACCESS_TOKEN>",
        "GOOGLE_TAGMANAGER_API_BASE": "<YOUR_GOOGLE_TAGMANAGER_API_BASE>",
        "GOOGLE_TAGMANAGER_TIMEOUT_MS": "<YOUR_GOOGLE_TAGMANAGER_TIMEOUT_MS>",
        "GOOGLE_TAGMANAGER_MAX_RETRIES": "<YOUR_GOOGLE_TAGMANAGER_MAX_RETRIES>",
        "GOOGLE_TAGMANAGER_MIN_INTERVAL_MS": "<YOUR_GOOGLE_TAGMANAGER_MIN_INTERVAL_MS>"
      }
    }
  }
}
Claude Code
claude mcp add mcp-google-tagmanager --env GOOGLE_TAGMANAGER_CLIENT_ID=<YOUR_GOOGLE_TAGMANAGER_CLIENT_ID> --env GOOGLE_TAGMANAGER_CLIENT_SECRET=<YOUR_GOOGLE_TAGMANAGER_CLIENT_SECRET> --env GOOGLE_TAGMANAGER_REFRESH_TOKEN=<YOUR_GOOGLE_TAGMANAGER_REFRESH_TOKEN> --env GOOGLE_TAGMANAGER_ACCESS_TOKEN=<YOUR_GOOGLE_TAGMANAGER_ACCESS_TOKEN> --env GOOGLE_TAGMANAGER_API_BASE=<YOUR_GOOGLE_TAGMANAGER_API_BASE> --env GOOGLE_TAGMANAGER_TIMEOUT_MS=<YOUR_GOOGLE_TAGMANAGER_TIMEOUT_MS> --env GOOGLE_TAGMANAGER_MAX_RETRIES=<YOUR_GOOGLE_TAGMANAGER_MAX_RETRIES> --env GOOGLE_TAGMANAGER_MIN_INTERVAL_MS=<YOUR_GOOGLE_TAGMANAGER_MIN_INTERVAL_MS> -- npx -y mcp-google-tagmanager

Related MCP servers

MCP server for the Avito Ads API: campaigns, ad groups, creatives, statistics and balances.

0
TypeScript
MIT
View repository →

MCP server for Google Business Profile: locations, reviews, local posts and performance metrics.

0
TypeScript
MIT
View repository →

Real-user Core Web Vitals from the Chrome UX Report (CrUX) API for any origin or URL.

0
TypeScript
MIT
View repository →

MCP server for the Google Forms API: create forms, manage questions, read responses and watches.

0
TypeScript
MIT
View repository →

MCP server for Google Merchant Center (Merchant API v1): products, promotions, reports, issues.

0
TypeScript
MIT
View repository →

MCP server for the Google Search Console API: search analytics, sitemaps, URL inspection, sites.

0
TypeScript
MIT
View repository →