google drive comments mcp for VS Code
io.github.zayansalman/google-drive-comments-mcp
Minimal MCP server for reading comments on Google Drive files (Docs, Sheets, Slides). Read-only.
client:VS Code
transport:stdio
runtime:pypi
Install google drive comments mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "drive-mcp-credentials",
"description": "DRIVE_MCP_CREDENTIALS",
"password": true
},
{
"type": "promptString",
"id": "drive-mcp-token",
"description": "DRIVE_MCP_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "drive-mcp-scopes",
"description": "DRIVE_MCP_SCOPES",
"password": true
}
],
"servers": {
"google-drive-comments-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"google-drive-comments-mcp"
],
"env": {
"DRIVE_MCP_CREDENTIALS": "${input:drive-mcp-credentials}",
"DRIVE_MCP_TOKEN": "${input:drive-mcp-token}",
"DRIVE_MCP_SCOPES": "${input:drive-mcp-scopes}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs