MCP Server
io.github.zayansalman/google-drive-comments-mcp MCP Server
io.github.zayansalman/google-drive-comments-mcp
What is the io.github.zayansalman/google-drive-comments-mcp MCP server?
Minimal MCP server for reading comments on Google Drive files (Docs, Sheets, Slides). Read-only.
How to install io.github.zayansalman/google-drive-comments-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
DRIVE_MCP_CREDENTIALSPath to the Google OAuth client secret JSON. Default: $XDG_CONFIG_HOME/google-drive-comments-mcp/credentials.json.
DRIVE_MCP_TOKENsecretPath to the cached Google OAuth refresh token. Default: $XDG_CONFIG_HOME/google-drive-comments-mcp/token.json.
DRIVE_MCP_SCOPESComma-separated Google OAuth scopes. Default: https://www.googleapis.com/auth/drive.readonly.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"google-drive-comments-mcp": {
"command": "uvx",
"args": [
"google-drive-comments-mcp",
"serve"
],
"env": {
"DRIVE_MCP_CREDENTIALS": "<YOUR_DRIVE_MCP_CREDENTIALS>",
"DRIVE_MCP_TOKEN": "<YOUR_DRIVE_MCP_TOKEN>",
"DRIVE_MCP_SCOPES": "<YOUR_DRIVE_MCP_SCOPES>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"google-drive-comments-mcp": {
"command": "uvx",
"args": [
"google-drive-comments-mcp",
"serve"
],
"env": {
"DRIVE_MCP_CREDENTIALS": "<YOUR_DRIVE_MCP_CREDENTIALS>",
"DRIVE_MCP_TOKEN": "<YOUR_DRIVE_MCP_TOKEN>",
"DRIVE_MCP_SCOPES": "<YOUR_DRIVE_MCP_SCOPES>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"google-drive-comments-mcp": {
"command": "uvx",
"args": [
"google-drive-comments-mcp",
"serve"
],
"env": {
"DRIVE_MCP_CREDENTIALS": "<YOUR_DRIVE_MCP_CREDENTIALS>",
"DRIVE_MCP_TOKEN": "<YOUR_DRIVE_MCP_TOKEN>",
"DRIVE_MCP_SCOPES": "<YOUR_DRIVE_MCP_SCOPES>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"google-drive-comments-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"google-drive-comments-mcp",
"serve"
],
"env": {
"DRIVE_MCP_CREDENTIALS": "<YOUR_DRIVE_MCP_CREDENTIALS>",
"DRIVE_MCP_TOKEN": "<YOUR_DRIVE_MCP_TOKEN>",
"DRIVE_MCP_SCOPES": "<YOUR_DRIVE_MCP_SCOPES>"
}
}
}
}Claude Code
claude mcp add google-drive-comments-mcp --env DRIVE_MCP_CREDENTIALS=<YOUR_DRIVE_MCP_CREDENTIALS> --env DRIVE_MCP_TOKEN=<YOUR_DRIVE_MCP_TOKEN> --env DRIVE_MCP_SCOPES=<YOUR_DRIVE_MCP_SCOPES> -- uvx google-drive-comments-mcp serveRelated MCP servers
Minimal MCP server for downloading Gmail attachments to disk. Read-only OAuth by default.
View repository →Minimal MCP server for Google Drive file management and Google Sheets editing.
View repository →