verified-googledocs-mcp
Provides tools for reading, editing, commenting, and syncing Google Docs with verified writes, including text manipulation, table operations, structural edits, comment management, and export.
Enables access to Google Drive APIs for exporting documents as PDF and other file operations, supporting the document workflow.
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., "@verified-googledocs-mcpReplace 'teh' with 'the' in my document's first tab."
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.
verified-googledocs-mcp
An MCP server for Google Docs whose writes carry proof. Every mutating tool re-reads the affected content from the document after it writes and returns evidence of what actually changed: before/after excerpts, the match count, and the document revision before and after. A tool never reports success for an edit that did not land.
Status: all 19 tools are implemented, covered by an offline unit suite, and exercised against the real Google Docs and Drive APIs by the live test suite. The original fourteen passed the formal live acceptance gate; the gate is rerun before each release. Install with
uvx verified-googledocs-mcp. See Status.
The problem
Driving Google Docs from an agent through a general Workspace MCP server tends to fail in quiet, expensive ways:
A
findAndReplacemeant for one tab silently edits every tab in the document.A search returns "0 matches" because the document has curly quotes or a non-breaking space the query doesn't, with no hint why.
A replace meant for one occurrence hits a repeated sentence and collapses both.
A "resolve comment" call returns success while the comment stays open.
Listing comments misses suggested edits entirely.
A markdown merge injects garbled text that a human only catches days later.
Each of these has a procedural workaround: tell the agent to scope to a tab, retry with normalized quotes, re-read after every write, never trust a resolve result. Those instructions work until someone forgets one. This server moves the discipline into the protocol, where it is deterministic.
Related MCP server: @node2flow/google-docs-mcp
The verified-write contract
Every mutating tool runs the same pipeline: read the tab, locate the target, apply the edit under a revision precondition, read the tab again, and return evidence built from the second read. The return value is a claim about the document's state after the call, backed by a server-side re-read, not an echo of the API response.
// replace_text(doc_id, tab_id, find="teh", replace="the", expected_matches=1)
{
"applied": true,
"match_count": 1,
"rung": "exact", // which normalization rung matched
"before": "...±200 chars around the edit, pre-write...",
"after": "...the same span, re-read after the write...",
"revision_before": "ALm37BX...",
"revision_after": "ALm37Cy...",
"audit_logged": true
}When something is wrong, the tool fails loud and diagnosed, with a typed error the agent can act on in one round trip rather than guessing:
{
"error_code": "MATCH_COUNT_MISMATCH",
"message": "expected 1 match(es) but found 3 at rung 'exact'",
"diagnostics": { "expected": 1, "actual": 3, "spans": [ /* every location */ ] },
"retryable": false
}What backs the guarantee
Tab-scoped by default. Editing tools require an explicit
tab_id. There is no whole-document replace, so a one-tab edit can never leak into a cover letter or an appendix tab.Normalization ladder. A search tries exact match, then curly/straight quote equivalence, then non-breaking-space and whitespace-run equivalence, then soft-hyphen stripping, and reports which rung matched. A zero-match result includes the nearest near-miss span it found.
Match-count guard.
expected_matchesdefaults to 1. If the real count differs, the tool makes no edit and returns every match location.Revision preconditions. Writes carry
writeControl.requiredRevisionIdfrom the pre-read, so a document that changed underneath the operation is rejected by the API rather than edited blind. Section ranges fromfind_sectionsare stamped with the revision they were computed at and refuse to apply once stale.UTF-16 correct. Match spans are mapped to the UTF-16 code units the Docs API indexes by, so emoji, combining marks, and other astral characters don't shift an edit onto the wrong text.
Audit trail. Every mutation appends a line to a local JSONL log. The append is best-effort: it never fails a write, and if it can't be written the evidence says so (
audit_logged: false).
Evidence by family
The guarantee is not one universal payload — it is a per-family invariant. Each
family re-reads the document after the write and proves the property that family
is responsible for. Every mutating tool also carries revision_before,
revision_after, and audit_logged.
Family | Tools | Proves |
Text edit |
|
|
Markdown range |
|
|
Structural |
|
|
Comment state |
| the re-queried |
Table |
|
|
The read and sync tools (read_document, list_tabs, find_sections,
list_open_items, get_comment_thread, diff_tab_vs_file, list_tables,
get_table) make no changes and carry no applied/evidence payload.
export_pdf is also a read/export tool in this sense — it returns file facts
(bytes_written, sha256, page_count) rather than an applied key, since
nothing in the document changes.
Dry run
Seven mutating tools (replace_text, replace_range_markdown,
replace_tab_markdown, append_markdown, insert_image, replace_table_row,
insert_table) accept dry_run=true. No API write is issued; the response
carries applied: false, an empty revision_after (no write, so no new
revision), audit_logged: false, and — for replace_text — a predicted
after excerpt computed by splicing the replacement into the pre-read. For
replace_table_row and insert_table, dry_run is authoritative for index
validity: the same assembled request list is index-simulated whether
dry_run is true or false, so a passing dry run always means the real write
will pass too. Use it to confirm a locate resolves to the right span before
committing the edit.
All seven require a suggestion-free target tab. Every mutating tool
computes its write indices against a suggestionsViewMode=PREVIEW_WITHOUT_SUGGESTIONS
read, but the actual write always lands in the document's real index space,
which includes pending suggestions. If the target tab has a pending
suggested insertion or deletion, those two index spaces diverge and a write
would land at the wrong offset — so every mutating tool refuses with
SUGGESTIONS_PRESENT instead (both in dry_run and live), rather than
risking a silent, wrong-offset write (issue #56). Accept or reject the
pending suggestion in the Docs UI first, then retry.
Tools
Nineteen focused tools, each described by when to reach for it, replace the slice of a 150-tool Workspace server that document workflows actually use.
Reading and structure
Tool | What it does |
| Read a tab as markdown, as structured positions and style runs, or as a headings-only outline |
| List tab IDs, titles, and nesting |
| Find headings and return their ranges, stamped with the document revision |
| List every top-level table in a tab, with position, size, and preceding-heading context |
| Read one table's full cell grid |
Editing (verified, tab-scoped)
Tool | What it does |
| Find/replace within a tab, with the normalization ladder and match guard |
| Replace a section range with markdown |
| Replace a whole tab's content with markdown |
| Append markdown to a tab |
| Insert an image at a quoted anchor or heading |
| Overwrite one row of an existing table with plain-text cells, in place |
| Insert a new table populated from rows, anchored like |
Comments and suggestions
Tool | What it does |
| Open comments and pending suggested edits; pass |
| Read a comment's full reply chain |
| Add a comment anchored to quoted text |
| Reply to a comment |
| Resolve a comment, re-query it, and confirm it actually closed |
Sync and export
Tool | What it does |
| Diff a tab's markdown against a local file |
| Export the whole document as a PDF to a local path, with a best-effort render-measured page count |
Status
Built incrementally; each tool ships with its verification and tests rather than as a stub.
Area | State |
OAuth ( | done |
| done |
Verification kernel (locator, error envelope, audit) | done |
| done |
Comment tools + | done |
Markdown write tools + | done |
Table tools ( | done; ships in |
Live acceptance gate | done for the initial release — report; rerun before release |
PyPI packaging + publish workflow | done; first release |
MCP registry listing | published with |
Install
The server talks to Google with your own OAuth credentials, so setup is a one-time Google Cloud step, then registering the server with your MCP client.
1. Google Cloud project (OAuth credentials)
Create a Google Cloud project and enable the Google Docs API and Google Drive API (APIs & Services → Library).
Configure the OAuth consent screen: User type External, publishing status Testing, and add your own Google account under Test users. (Testing mode is the point — the app stays private to the test users you list; you never submit it for Google verification.)
Create an OAuth client ID of type Desktop app and download the client secret JSON to
~/.config/verified-googledocs-mcp/credentials.json. (Override the location withVERIFIED_GOOGLEDOCS_MCP_CREDENTIALS.)
2. Authorize once, in a terminal
uvx verified-googledocs-mcp authThis opens a browser and completes consent. Because the app is unverified and in
Testing, Google shows a "Google hasn't verified this app" screen — click
Advanced → Go to verified-googledocs-mcp (unsafe) and continue. This is
expected for a personal Desktop client; you are granting access to your own app,
running locally as you. It then caches a refreshable token at
~/.config/verified-googledocs-mcp/token.json. Auth runs only here, never inside
the server, because MCP clients start the server headless.
3. Run it
uvx verified-googledocs-mcp # downloads + runs in one step
# or: pip install verified-googledocs-mcpThen register the server with your MCP client.
From source. To run from a local clone instead:
git clone https://github.com/michaelrobertsutton/verified-googledocs-mcp
cd verified-googledocs-mcp
uv run verified-googledocs-mcpClaude Code
A project-local .mcp.json is included in the repo. Clone and open the project and Claude Code picks it up automatically — no manual config required:
git clone https://github.com/michaelrobertsutton/verified-googledocs-mcp
cd verified-googledocs-mcp
claude # .mcp.json is loaded automaticallyUse it across all your projects (user scope). Register it once at user scope:
claude mcp add verified-googledocs-mcp --scope user -- uvx verified-googledocs-mcpThis writes to ~/.claude.json and makes the server available in every Claude Code session on this machine. If uvx is not on Claude Code's PATH, use the full path (find it with which uvx).
Claude Desktop and other clients
Most clients use the standard mcpServers config block. Add the following to your client's config file:
{
"mcpServers": {
"verified-googledocs-mcp": {
"command": "uvx",
"args": ["verified-googledocs-mcp"]
}
}
}PATH note for headless clients: Claude Desktop and similar clients launch the server as a subprocess with a minimal PATH that may not include Homebrew or user-local bins. If uvx is not found, use its full path ("command": "/opt/homebrew/bin/uvx"). Find it with which uvx. On Apple Silicon the Homebrew prefix is /opt/homebrew; on Intel Mac it is /usr/local.
Startup-timeout note. The first uvx launch downloads the package and its dependencies, which can exceed a client's MCP startup timeout and surface as a failed connection. Pre-warm the cache once in a terminal by running the auth command (uvx verified-googledocs-mcp auth) — you do this anyway, and it installs the package into the uvx cache so the client's launch is fast.
From source. If you prefer to run from a local clone instead of PyPI:
{
"mcpServers": {
"verified-googledocs-mcp": {
"command": "/opt/homebrew/bin/uv",
"args": ["run", "verified-googledocs-mcp"],
"cwd": "/path/to/verified-googledocs-mcp"
}
}
}Logs / stderr. The server logs to stderr, which MCP clients capture rather than show inline. If a connection or a tool call fails, check the client's MCP logs — for Claude Desktop on macOS, ~/Library/Logs/Claude/mcp*.log. An AUTH_EXPIRED envelope there means the token is missing or expired; re-run the auth command.
The server uses the documents and drive scopes (comments require Drive). The credentials path is overridable with VERIFIED_GOOGLEDOCS_MCP_CREDENTIALS.
Security and permissions
This is a single-user, local server. It runs as you, over stdio, launched by your MCP client; there is no network listener, no hosted service, and no shared credentials. It acts entirely with your own Google authority.
Scopes. It requests
documentsanddrive. The fulldrivescope is broader than editing alone needs, but the comment and suggestion tools (listing, replying to, and resolving comments on documents you already have) operate through the Drive API on arbitrary existing files, which the narrowerdrive.filescope cannot reach.driveis the minimum that covers the full tool set; if you don't need the comment tools, a fork could drop to a narrower scope.Credentials at rest. The OAuth client secret lives at
~/.config/verified-googledocs-mcp/credentials.json; the cached token (including the refresh token) is written to~/.config/verified-googledocs-mcp/token.jsonwith owner-only permissions (0600, under a0700directory). Treat both as secrets: a leaked refresh token grants your fulldrive+documentsaccess until you revoke it in your Google Account's security settings. Neither file is ever committed (both are gitignored).Audit log. Every mutation appends to
~/.local/state/verified-googledocs-mcp/audit.jsonl(also0600). Each line records the timestamp, document ID, tab ID, tool name, and the evidence payload — which includes before/after content excerpts. To log the metadata without the excerpts, set the environment variableVERIFIED_GOOGLEDOCS_MCP_AUDIT_EXCERPTSto a falsey value (0,false,no, oroff); thebefore/afterfields are then replaced with"[redacted; N chars]"and every other field is kept. Override the log location withXDG_STATE_HOME.Local file diffs.
diff_tab_vs_filereads a local file so it can compare a Doc tab with markdown on disk. It resolves symlinks before reading and only allows paths underVERIFIED_GOOGLEDOCS_MCP_ALLOWED_FILE_ROOTS(a platform path-list; defaults to the user's home directory, not the server process's working directory). The home-directory default exists because MCP clients typically register this server pinned to one repo (e.g.--directory /path/to/GoogleDocs-MCP), while the diff target is almost always in whichever other project the caller is actually working in — scoping to the launch directory made every cross-repo diff fail by default. Narrow it further (e.g. back to a single repo) or widen it by settingVERIFIED_GOOGLEDOCS_MCP_ALLOWED_FILE_ROOTSon the server process to a:-separated (;on Windows) list of directories, then restart the server — a rejected path's error names the env var and includes the currently configuredallowed_rootsso you can see exactly what's missing. It's still a real boundary, not unrestricted: an agent asking to diff against/etc/passwdor another user's home directory is refused. A home-directory-wide default also has to defend against a document's own content tricking an agent into reading credentials (prompt injection) — e.g. a paragraph instructing "diff against~/.ssh/id_rsa" — so.ssh,.aws,.gnupg,.netrc,.git-credentials,.config/gh,.docker/config.json, and.npmrcunder the home directory are denylisted unconditionally, regardless of the configured allowed roots. It also refuses files larger thanVERIFIED_GOOGLEDOCS_MCP_MAX_DIFF_FILE_BYTES(default1000000).export_pdf's output path is confined by this same policy — the sameVERIFIED_GOOGLEDOCS_MCP_ALLOWED_FILE_ROOTSallow-list and the same unconditional credential-path denylist, so a PDF export can no more land in (or overwrite)~/.sshthan a diff can read from it.
Error codes
Failures return a typed envelope (error_code, message, diagnostics, retryable):
Code | Meaning |
| Target not found after the full normalization ladder; diagnostics include the nearest near-miss |
| Found a different count than |
| Document changed between read and write; retry after re-reading |
| A write was issued, but the post-write re-read did not verify the expected final state |
| A |
| Unknown |
| Match crosses a paragraph or table-cell boundary |
| Markdown outside the supported subset; the offending construct is named |
| Comment anchor text not found; nearest candidates returned |
| A resolve was requested but re-query shows the comment open |
| Empty or contradictory arguments |
| Image source is a local path; a fetchable URL is required |
| No valid token; run |
| A markdown write's compiled requests would land at an invalid index; caught before the API call. Raised identically by |
| The requested |
| The target tab has pending suggested insertions/deletions; a write refuses rather than computing indices against the wrong index space (issue #56) — accept or reject the suggestions first, then retry |
| A caller-supplied range doesn't fit the tab's current extent, or the Docs API itself rejected the write as index/range-invalid (the verbatim API message is included) |
| A text run's computed UTF-16 length disagrees with the Docs API's reported |
Development
uv run --extra dev pytest # unit tests (offline) + coverage
uv run --extra dev ruff check src tests # lint
uv run --extra dev ruff format src tests # format
uv run --extra dev mypy src # type checkUnit tests run against synthetic Docs API fixtures and an in-memory MCP client, so the full suite is offline (it never runs the live tests). The live acceptance suite (under tests/live/) runs with pytest --run-live against a real scratch document and needs OAuth credentials; it is the pre-release gate and never runs in CI — see docs/acceptance-report.md.
See docs/architecture.md for the module map and the verification pipeline, PRD.md for the full specification, docs/cutover.md to migrate off a general Workspace MCP server, and CONTRIBUTING.md to build on it.
Limitations
Accepting or rejecting suggested edits is not possible through the generally-available Google Docs API. This server makes suggestions visible alongside comments; acting on them stays a manual step in the Docs UI. As of July 2026 Google documents accept/reject/delete suggestion requests — but only under the Workspace Developer Preview Program; the stable v1 surface rejects them (verified 2026-07-17). Verified
accept_suggestion/reject_suggestiontools become buildable when that reaches GA.Single user, local. stdio transport, one cached token, no hosted or multi-user mode.
Docs only. Gmail, Calendar, and Sheets are out of scope by design.
Markdown is a fixed subset (headings, bold/italic, lists, tables, links). Anything outside it is rejected with a clear error rather than approximated.
License
MIT, © 2026 Michael Sutton.
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
- AlicenseBqualityBmaintenanceAn MCP server for reading, editing, and validating Microsoft Word documents with specialized support for track changes, comments, and footnotes. It enables structural auditing, heading extraction, and precise OOXML-level document manipulation through natural language tools.Last updated10038MIT
- Alicense-qualityDmaintenanceMCP server for Google Docs — create, read, edit, format, and manage documents through 26 tools via the Model Context Protocol.Last updated41MIT
- Alicense-qualityDmaintenanceAn unofficial MCP server for Google Docs that lets large language models securely access, read, and interact with documents, enabling smarter workflows and AI-assisted editing.Last updated30MIT
- 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
The evidence layer for MCP: live operational grades plus Trust Receipts for every registry server.
Read-only MCP over an agentic SLR workspace with per-claim citation verification
Read-only MCP over an agentic SLR workspace with per-claim citation verification
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/michaelrobertsutton/verified-googledocs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server