google-drive-comments-mcp
Provides tools to read comment threads on Google Drive files (Docs, Sheets, Slides) including anchored quoted text, replies, and resolved/open status via the Drive API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@google-drive-comments-mcpshow open comments on the latest design doc"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
google-drive-comments-mcp
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.
Features
2 MCP tools —
drive_search_files,drive_get_comments. That's the whole API.Reads full comment threads — author, content, the anchored quoted text, resolved/open status, and every reply (with resolve/reopen actions).
Works across Docs, Sheets, and Slides — the Drive comments API is uniform across file types.
Accepts URLs or IDs — paste a
docs.google.com/document/d/…link or a bare file ID.Read-only OAuth scope (
drive.readonly).Env-var-driven config —
DRIVE_MCP_CREDENTIALS,DRIVE_MCP_TOKEN,DRIVE_MCP_SCOPES.
Related MCP server: google-workspace-mcp-server
Install
pip install google-drive-comments-mcp
# or, with uv:
uv tool install google-drive-comments-mcpOne-time setup (~10 minutes)
You need a Google Cloud OAuth client. The server runs entirely on your machine; nothing leaves it.
Sign in to Google Cloud Console with the account whose Drive comments you want to read.
Create a project (or pick an existing one).
Enable the Drive API: console.cloud.google.com/apis/library/drive.googleapis.com.
Configure the OAuth consent screen under APIs & Services → OAuth consent screen:
Google Workspace users: User type = Internal. No app verification is needed even though
drive.readonlyis a restricted scope.Personal Gmail users: User type = External, and add your own address under "Test users".
APIs & Services → Credentials → + Create credentials → OAuth client ID
Application type: Desktop app
Download the JSON.
Run setup:
google-drive-comments-mcp setup --import-credentials ~/Downloads/client_secret_*.jsonA 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"Use it from Claude Code
claude mcp add --scope user google-drive-comments google-drive-comments-mcp -- serveThen:
Read the open comments on this doc and summarize what reviewers are asking for: https://docs.google.com/document/d/…
Use it from Claude Desktop
~/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.)
Use it from the shell
# 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-onlyThe 2 MCP tools
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.google.com/document/d/1AbC…/edit"
}
]drive_get_comments(file, include_resolved=True)
Read all comments on a file. file accepts a Docs/Sheets/Slides/Drive URL or a bare file ID.
{
"file": { "id": "1AbC…", "name": "Q3 Strategy", "mime_type": "…document", "web_view_link": "…", "owners": ["Jane Doe"] },
"open_count": 2,
"resolved_count": 1,
"comments": [
{
"id": "AAAA…",
"author": "Jane Doe",
"content": "Can we add the unit-economics table here?",
"quoted_text": "Our margins improved in Q3.",
"resolved": false,
"created": "2026-04-21T10:00:00Z",
"modified": "2026-04-21T10:00:00Z",
"replies": [
{ "author": "John Smith", "content": "Added.", "action": "", "created": "2026-04-21T11:00:00Z" }
]
}
]
}quoted_text is the document text the comment is anchored to — useful context for understanding what each comment refers to.
Configuration
Variable | Default | What |
|
| OAuth client secret JSON |
|
| Cached refresh token |
|
| OAuth scopes (comma-separated) |
|
| Standard XDG override |
Sharing one login with other Google MCP tools
If you also run a sibling tool (e.g. gmail-attachments-mcp) and want a single OAuth consent for both, point both tools at the same credential + token files (via the env vars above, or symlinks) and authorize once with the combined scopes:
DRIVE_MCP_SCOPES="https://www.googleapis.com/auth/gmail.readonly,https://www.googleapis.com/auth/drive.readonly" \
google-drive-comments-mcp setup --reauthA token granted a superset of scopes satisfies each tool's narrower request.
Security
Read-only: the default scope is
drive.readonly. It cannot edit, comment, or delete — only read file metadata, content, and comments.Scope breadth:
drive.readonlygrants read access to all your Drive files, not just the one you query. There is no per-file read scope that also exposes comments. Treat the cached token like a password (it's written0600).No telemetry: your OAuth client lives in your own Google Cloud project. Nothing leaves your machine.
Troubleshooting
HttpError 403: Google Drive API has not been used in project … before or it is disabled
Enable the Drive API on the project that owns your OAuth client, then retry.
No valid Google token from Claude Desktop / cron
Run google-drive-comments-mcp setup once in a terminal where a browser can open. Subsequent runs reuse the cached token.
Comments come back empty on a file you know has comments
Confirm you authorized the account that can actually see the file, and that the file genuinely has comments (suggestions are not comments). Resolved comments are included unless you pass --open-only / include_resolved=false.
Authentication — bring your own Google OAuth client
There are no API keys and no shipped secrets. The server authenticates to your Google account with an OAuth client you create, and caches a refresh token locally. The author has zero access to your data.
Why your own client? Google's restricted scopes (here,
drive.readonly) can't be redistributed in a shared app, and an unverified shared app is capped at 100 users. "Bring your own OAuth client" is the standard pattern for personal-data MCP servers.What you need: a free Google Cloud project, the Drive API enabled, an OAuth consent screen, and a Desktop OAuth client. Full walkthrough → docs/setup-google-oauth.md.
Where your token lives:
~/.config/google-drive-comments-mcp/token.json(mode0600). Delete it to revoke locally; revoke fully at myaccount.google.com/permissions.No hosted/SaaS option — everything runs locally; your Drive data never touches a third-party server.
More guides
docs/setup-google-oauth.md — full OAuth walkthrough + common errors
docs/claude-code.md · docs/claude-desktop.md · docs/other-clients.md — per-client setup (Cursor, Cline, Continue, …)
examples/ — runnable snippets
Related tools
Part of a small family of focused, local MCP servers for Google Workspace data the hosted connectors don't expose:
gmail-attachments-mcp — download Gmail attachment bytes to disk
google-drive-comments-mcp — read comment threads on Docs/Sheets/Slides (this repo)
google-drive-files-mcp — move/organize Drive files
They can share one OAuth login or stay isolated — see each repo's setup.
License
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityFmaintenanceMCP server for Google Workspace APIs - Docs, Sheets, Drive, Gmail, and Calendar. Enables reading, creating, and editing Google Docs and Sheets, managing comments, reading emails, and viewing calendar events.Last updated2347316MIT
- Alicense-qualityFmaintenanceMCP server for Google Workspace APIs enabling reading, creating, and editing Google Docs and Sheets, managing comments, reading emails, and viewing calendar events.Last updated7316MIT
- Flicense-qualityBmaintenanceA read-only Google Drive MCP server that allows searching files, reading file content (with auto-export for Google Docs, Sheets, Slides), and retrieving file metadata via OAuth authentication.Last updated402
- AlicenseBqualityCmaintenanceProduction-ready MCP server for Google Workspace providing broad coverage across Gmail, Drive, Calendar, Docs, Sheets, and more, with safe-by-default write operations and markdown-to-Google-Docs support.Last updated100MIT
Related MCP Connectors
Streamable HTTP MCP server for Google Calendar and Sheets with OAuth login.
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Google Docs MCP Pack — read, create, and edit Google Docs via OAuth.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zayansalman/google-drive-comments-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server