Skip to content
VS Code

Google Search Console MCP Server for VS Code

io.github.conorbronsdon/gsc-mcp

Google Search Console for AI agents: search analytics, sitemaps, URL inspection.

client:VS Code transport:stdio runtime:npm

Install Google Search Console MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gsc-credentials-path",
      "description": "GSC_CREDENTIALS_PATH",
      "password": true
    }
  ],
  "servers": {
    "gsc-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@conorbronsdon/gsc-mcp"
      ],
      "env": {
        "GSC_CREDENTIALS_PATH": "${input:gsc-credentials-path}"
      }
    }
  }
}

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 MCP Server in other clients