Skip to content
VS Code

gogcli mcp for VS Code

io.github.chrischall/gogcli-mcp

Google Sheets (and more) for Claude via gogcli — read, write, and manage spreadsheets

client:VS Code transport:stdio runtime:npm

Install gogcli mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gog-account",
      "description": "GOG_ACCOUNT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gog-path",
      "description": "GOG_PATH",
      "password": true
    }
  ],
  "servers": {
    "gogcli-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "gogcli-mcp"
      ],
      "env": {
        "GOG_ACCOUNT": "${input:gog-account}",
        "GOG_PATH": "${input:gog-path}"
      }
    }
  }
}

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

gogcli mcp in other clients