Minimal MCP server for reading comments on Google Drive files (Docs, Sheets, Slides). Read-only.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"google-drive-comments": {
"args": [
"serve"
],
"command": "google-drive-comments-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A focused Model Context Protocol server (and standalone CLI) for reading comments on Google Drive files — Docs, Sheets, and Slides. Two tools, read-only OAuth scope, no extra surface area.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'google-drive-comments-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked google-drive-comments-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
MCP Security Weekly
Get CVE alerts and security updates for io.github.zayansalman/google-drive-comments-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A focused Model Context Protocol server (and standalone CLI) for reading comments on Google Drive files — Docs, Sheets, and Slides. Two tools, read-only OAuth scope, no extra surface area.
Built because the hosted Google Drive connectors expose file content and search, but not the comment threads — the review discussion, the anchored quotes, the resolve/reopen history. This server fills that gap for any MCP client (Claude Code, Claude Desktop, Cursor, Cline, etc.), and also works as a plain CLI.
drive_search_files, drive_get_comments. That's the whole API.docs.google.com/document/d/… link or a bare file ID.drive.readonly).DRIVE_MCP_CREDENTIALS, DRIVE_MCP_TOKEN, DRIVE_MCP_SCOPES.pip install google-drive-comments-mcp
# or, with uv:
uv tool install google-drive-comments-mcp
You need a Google Cloud OAuth client. The server runs entirely on your machine; nothing leaves it.
drive.readonly is a restricted scope.google-drive-comments-mcp setup --import-credentials ~/Downloads/client_secret_*.json
A browser window opens for OAuth consent. The refresh token is cached at ~/.config/google-drive-comments-mcp/token.json.
Verify:
google-drive-comments-mcp status
google-drive-comments-mcp comments "https://docs.google.com/document/d/YOUR_DOC_ID/edit"
claude mcp add --scope user google-drive-comments google-drive-comments-mcp -- serve
Then:
Read the open comments on this doc and summarize what reviewers are asking for: https://docs.google.com/document/d/…
~/Library/Application Support/Claude/claude_desktop_config.json (Mac):
{
"mcpServers": {
"google-drive-comments": {
"command": "google-drive-comments-mcp",
"args": ["serve"]
}
}
}
(Use the absolute path from which google-drive-comments-mcp if it isn't on Claude Desktop's $PATH.)
# Find a doc
google-drive-comments-mcp search "Q3 strategy"
# Read all comments (open + resolved) on a doc by URL or ID
google-drive-comments-mcp comments "https://docs.google.com/document/d/abc123/edit"
# Only unresolved comments
google-drive-comments-mcp comments abc123 --open-only
drive_search_files(query, max_results=10)Search Drive. Plain strings are auto-wrapped as a filename search; raw Drive query syntax passes through.
[
{
"id": "1AbC…",
"name": "Q3 Strategy",
"mime_type": "application/vnd.google-apps.document",
"modified": "2026-04-20T09:00:00.000Z",
"owners": ["Jane Doe"],
"web_view_link": "https://docs.g
... [View full README on GitHub](https://github.com/zayansalman/google-drive-comments-mcp#readme)