Skip to content
VS Code

verified googledocs mcp for VS Code

io.github.michaelrobertsutton/verified-googledocs-mcp

MCP server for Google Docs with verified writes — every mutation returns before/after proof.

client:VS Code transport:stdio runtime:pypi

Install verified googledocs mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "verified-googledocs-mcp-credentials",
      "description": "VERIFIED_GOOGLEDOCS_MCP_CREDENTIALS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verified-googledocs-mcp-audit-excerpts",
      "description": "VERIFIED_GOOGLEDOCS_MCP_AUDIT_EXCERPTS",
      "password": true
    }
  ],
  "servers": {
    "verified-googledocs-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "verified-googledocs-mcp"
      ],
      "env": {
        "VERIFIED_GOOGLEDOCS_MCP_CREDENTIALS": "${input:verified-googledocs-mcp-credentials}",
        "VERIFIED_GOOGLEDOCS_MCP_AUDIT_EXCERPTS": "${input:verified-googledocs-mcp-audit-excerpts}"
      }
    }
  }
}

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

verified googledocs mcp in other clients