Skip to content
VS Code

gsc for VS Code

io.github.mikusnuz/gsc

MCP server for Google Search Console & Indexing API — search analytics, sitemaps, URL inspection

client:VS Code transport:stdio runtime:npm

Install gsc 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-service-account-key-path",
      "description": "GSC_SERVICE_ACCOUNT_KEY_PATH",
      "password": true
    }
  ],
  "servers": {
    "gsc": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mikusnuz/gsc-mcp"
      ],
      "env": {
        "GSC_CLIENT_ID": "${input:gsc-client-id}",
        "GSC_CLIENT_SECRET": "${input:gsc-client-secret}",
        "GSC_REFRESH_TOKEN": "${input:gsc-refresh-token}",
        "GSC_SERVICE_ACCOUNT_KEY_PATH": "${input:gsc-service-account-key-path}"
      }
    }
  }
}

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

gsc in other clients