Skip to content
VS Code

google docs mcp server for VS Code

io.github.gigabrain-observer/google-docs-mcp-server

Google Docs MCP server with full tab support, markdown extraction, and batch updates.

client:VS Code transport:stdio runtime:pypi

Install google docs mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "service-account-path",
      "description": "SERVICE_ACCOUNT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "subject-email",
      "description": "SUBJECT_EMAIL",
      "password": true
    }
  ],
  "servers": {
    "google-docs-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "google-docs-mcp-server"
      ],
      "env": {
        "SERVICE_ACCOUNT_PATH": "${input:service-account-path}",
        "SUBJECT_EMAIL": "${input:subject-email}"
      }
    }
  }
}

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

google docs mcp server in other clients