Skip to content
VS Code

Google Search Console for VS Code

com.getmcpads/google-search-console

Google Search Console MCP server: 20 read tools.

client:VS Code transport:stdio runtime:npm

Install Google Search Console in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gsc-client-id",
      "description": "GSC_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gsc-client-secret",
      "description": "GSC_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gsc-refresh-token",
      "description": "GSC_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gsc-access-token",
      "description": "GSC_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gsc-site-url",
      "description": "GSC_SITE_URL",
      "password": true
    }
  ],
  "servers": {
    "google-search-console": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@getmcpads/google-search-console-mcp-server"
      ],
      "env": {
        "GSC_CLIENT_ID": "${input:gsc-client-id}",
        "GSC_CLIENT_SECRET": "${input:gsc-client-secret}",
        "GSC_REFRESH_TOKEN": "${input:gsc-refresh-token}",
        "GSC_ACCESS_TOKEN": "${input:gsc-access-token}",
        "GSC_SITE_URL": "${input:gsc-site-url}"
      }
    }
  }
}

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

Google Search Console in other clients