gdoc-comments
An MCP server for reading/editing Google Docs content and managing comments, including listing, creating, replying, resolving, and reopening comments via the Docs API and Drive API.
README
gdoc-comments MCP server
An MCP server for reading/editing Google Docs content and managing comments (list, create, reply, resolve, reopen), backed by the Docs API and the Drive API's comments endpoints.
Why a custom server instead of an existing one
Claude Code already ships with a first-party Google Drive connector
(mcp__claude_ai_Google_Drive__*), and there's no shortage of third-party
"Google Docs MCP" projects on GitHub/npm. In practice neither covers actual
comment management:
- The built-in Drive connector exposes 8 tools total —
search_files,list_recent_files,get_file_metadata,get_file_permissions,read_file_content,download_file_content,create_file,copy_file. Onlyread_file_contenttouches comments at all, via anincludeCommentsflag that inlines them as read-only text tags in the document body. There's no comment listing with structured IDs or resolved status, and no way to create a comment, reply to one, or resolve/reopen a thread. - Third-party servers vary widely in whether they touch comments at all, and where they do, comments created through the Drive API generally aren't anchored to a text selection in the Docs UI (a Drive API limitation this server inherits too — see the note under "Tools exposed" below).
This server exists specifically to close that gap: full read/write comment lifecycle management (list, create, reply, resolve, reopen), not just read-only visibility into comments that already exist.
1. Google Cloud setup (one-time)
- Create or pick a project at https://console.cloud.google.com/.
- Enable two APIs for that project:
- Google Docs API
- Google Drive API
- Configure the OAuth consent screen (External is fine; keep it in "Testing" mode) and add your own Google account under Test users.
- Create an OAuth client ID: APIs & Services → Credentials → Create Credentials → OAuth client ID → Application type: Desktop app.
- Download the client JSON and save it as
credentials.jsonin this directory (already gitignored).
2. Install
python3 -m venv .venv
.venv/bin/pip install -r requirements.txt
3. Authenticate (one-time, interactive)
.venv/bin/python authenticate.py
This opens a browser for Google login/consent and caches a token to
token.json (gitignored). Since the OAuth consent screen stays in "Testing"
mode, click through the "unverified app" warning — that's expected for an
app only you use. The MCP server itself never triggers this flow; it only
reads and silently refreshes this cached token. Re-run this script if the
token is ever revoked or deleted.
4. Wire it into Claude Code
The server's command always points at wherever this repo was cloned — the
venv and server.py live here, not in whatever project you happen to be
registering the tool for. Set that path once:
GDOC_MCP_DIR=/absolute/path/to/gdoc_comment_mcp # wherever you cloned this repo
PYTHONPATH must point at $GDOC_MCP_DIR — server.py is launched directly
(not via -m), so without it Python can't find the gdoc_mcp package it's
part of, and the server crashes immediately on every connection attempt.
Local scope (private to you, this project only)
The default for claude mcp add. Run from anywhere, including a different
project's directory — only $GDOC_MCP_DIR needs to be right, not your pwd:
claude mcp add gdoc-comments -e PYTHONPATH="$GDOC_MCP_DIR" -- "$GDOC_MCP_DIR/.venv/bin/python" "$GDOC_MCP_DIR/gdoc_mcp/server.py"
User scope (private to you, available in every project)
Add -s user so the server shows up regardless of which directory you launch
claude from — no need to re-register it per project:
claude mcp add gdoc-comments -s user -e PYTHONPATH="$GDOC_MCP_DIR" -- "$GDOC_MCP_DIR/.venv/bin/python" "$GDOC_MCP_DIR/gdoc_mcp/server.py"
Project scope (shared with anyone who clones a given project)
Add -s project while standing inside that other project's directory —
this writes a .mcp.json there (not in gdoc_comment_mcp), which you'd
commit so teammates get the server automatically when they open that project
in Claude Code:
cd /path/to/some/other/project
claude mcp add gdoc-comments -s project -e PYTHONPATH="$GDOC_MCP_DIR" -- "$GDOC_MCP_DIR/.venv/bin/python" "$GDOC_MCP_DIR/gdoc_mcp/server.py"
Each teammate still needs to complete their own Google Cloud
setup and authenticate locally —
.mcp.json only wires up the server command, not credentials.
Tools exposed
read_google_doc(document_id)— title + flattened text contentinsert_text_in_doc(document_id, index, text)append_text_to_doc(document_id, text)replace_text_in_doc(document_id, find_text, replace_text, match_case)list_doc_comments(document_id, include_resolved)get_doc_comment(document_id, comment_id)create_doc_comment(document_id, content, quoted_text)reply_to_doc_comment(document_id, comment_id, content)resolve_doc_comment(document_id, comment_id, content)reopen_doc_comment(document_id, comment_id, content)
document_id accepts either a bare document ID or a full
https://docs.google.com/document/d/... URL.
Note: new comments created via the API are not anchored to a specific text
selection — the Drive API doesn't expose that. quoted_text is shown as
context alongside the comment but won't highlight a range in the doc.
Tests
.venv/bin/python -m pytest tests/
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。