Skip to content
VS Code

Google Business Profile MCP for VS Code

io.github.a1-x-tech/mcp-google-business

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

client:VS Code transport:stdio runtime:npm

Install Google Business Profile MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-business-client-id",
      "description": "GOOGLE_BUSINESS_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-business-client-secret",
      "description": "GOOGLE_BUSINESS_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-business-refresh-token",
      "description": "GOOGLE_BUSINESS_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-business-access-token",
      "description": "GOOGLE_BUSINESS_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-business-timeout-ms",
      "description": "GOOGLE_BUSINESS_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-business-max-retries",
      "description": "GOOGLE_BUSINESS_MAX_RETRIES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-business-oauth-port",
      "description": "GOOGLE_BUSINESS_OAUTH_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-business-accounts-api-base",
      "description": "GOOGLE_BUSINESS_ACCOUNTS_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-business-info-api-base",
      "description": "GOOGLE_BUSINESS_INFO_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-business-performance-api-base",
      "description": "GOOGLE_BUSINESS_PERFORMANCE_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-business-v4-api-base",
      "description": "GOOGLE_BUSINESS_V4_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "mcp-google-business": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-google-business"
      ],
      "env": {
        "GOOGLE_BUSINESS_CLIENT_ID": "${input:google-business-client-id}",
        "GOOGLE_BUSINESS_CLIENT_SECRET": "${input:google-business-client-secret}",
        "GOOGLE_BUSINESS_REFRESH_TOKEN": "${input:google-business-refresh-token}",
        "GOOGLE_BUSINESS_ACCESS_TOKEN": "${input:google-business-access-token}",
        "GOOGLE_BUSINESS_TIMEOUT_MS": "${input:google-business-timeout-ms}",
        "GOOGLE_BUSINESS_MAX_RETRIES": "${input:google-business-max-retries}",
        "GOOGLE_BUSINESS_OAUTH_PORT": "${input:google-business-oauth-port}",
        "GOOGLE_BUSINESS_ACCOUNTS_API_BASE": "${input:google-business-accounts-api-base}",
        "GOOGLE_BUSINESS_INFO_API_BASE": "${input:google-business-info-api-base}",
        "GOOGLE_BUSINESS_PERFORMANCE_API_BASE": "${input:google-business-performance-api-base}",
        "GOOGLE_BUSINESS_V4_API_BASE": "${input:google-business-v4-api-base}"
      }
    }
  }
}

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

Google Business Profile MCP in other clients