Skip to content
VS Code

gdocs comments mcp for VS Code

io.github.stanislawherjan1/gdocs-comments-mcp

Add inline, range-anchored comments to Google Docs - the one comment op the Google APIs can't do.

client:VS Code transport:stdio runtime:npm

Install gdocs comments mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gdocs-comments-profile-dir",
      "description": "GDOCS_COMMENTS_PROFILE_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gdocs-comments-cdp-url",
      "description": "GDOCS_COMMENTS_CDP_URL",
      "password": true
    }
  ],
  "servers": {
    "gdocs-comments-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "gdocs-comments-mcp"
      ],
      "env": {
        "GDOCS_COMMENTS_PROFILE_DIR": "${input:gdocs-comments-profile-dir}",
        "GDOCS_COMMENTS_CDP_URL": "${input:gdocs-comments-cdp-url}"
      }
    }
  }
}

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

gdocs comments mcp in other clients