gdoc MCP
This server provides typed MCP tools to interact with Google Docs and Sheets via the gdoc CLI, supporting authentication, file management, content reading/writing, collaboration, and an escape hatch for advanced operations.
Authentication:
connect_googleto authorize a Google account via OAuth.File Discovery:
list_files(list Docs/Sheets in Drive or a folder, filterable by type) andsearch_files(search by name or content, with optional title-only).Reading & Metadata:
read_documentreads a Doc as Markdown or Sheet as a table, with options for tabs, revisions, comments, ranges, and image handling.document_inforetrieves metadata.list_tabsandtable_of_contentsprovide structure, andlist_revisionsshows revision history.Comments: Full comment management:
list_comments,get_comment,add_comment(with quoted text anchors),reply_to_comment,resolve_comment, andreopen_comment.Writing & Editing:
edit_documentreplaces text or table cells (case-sensitive, replace-all).write_documentreplaces an entire document or tab with Markdown.insert_documentinserts at start/end.create_documentcreates a new Doc, optionally from Markdown.add_tabadds a tab.Organization & Sharing:
copy_documentduplicates a document,share_documentshares with email and role (reader/writer/commenter).Escape Hatch:
gdoc_cliruns allowlistedgdocsubcommands for advanced operations not covered by typed tools.
Provides tools for managing Google Documents, including reading, searching, editing, commenting, sharing, and creating documents.
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., "@gdoc MCPfind documents about budget planning"
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.
human_edit_tracking: enabled: true history: []
gdoc MCP
Typed MCP tools backed by Luca De Leo's gdoc CLI.
It follows JP Addison's dharma pattern:
the MCP server validates tool inputs, runs the CLI without a shell, returns structured
output, and keeps an allowlisted escape hatch for new CLI features.
Related MCP server: Google Workspace MCP Server
Chosen deployment
Use the hosted MCP connector for 80,000 Hours. A Claude owner adds one URL; each staff member clicks Connect and authorizes their own Google account. This is the only option that gives staff the same connector-level experience as native Drive.
The local MCPB remains a fallback for development, personal use, or environments where hosting Google refresh tokens is unacceptable. It is not the planned staff deployment.
Local fallback
Recipients do not need a terminal, Python, Node, uv, or a separate gdoc install:
Open the
.mcpbbuilt for the right Google profile and Mac architecture.In Claude, ask: “Connect Google Docs using the gdoc tools.”
Claude calls
connect_google; the bundle opens Google's authorization page.Sign into Google and approve access once.
The bundle contains the CLI and the profile's Desktop OAuth client. Google stores no
password in the extension: the browser returns an authorization code, and gdoc saves
the resulting refresh token locally under ~/.config/gdoc/ with mode 0600.
connect_google is separate from Claude's connector-level Connect button. That
button is available to remote MCP connectors; a local MCPB initiates OAuth from its own
tool.
Remote connector
Follow the personal end-to-end test guide to configure Google Cloud, install the Web OAuth credential without exposing it, add the connector to Claude, and verify read and write calls.
The remote service gives Claude Team users the native connector flow: an owner adds
https://gdoc-mcp-alejo.fly.dev/mcp once, then each user clicks Connect and grants
Google access. The deployed endpoint is healthy, but its current personal Desktop OAuth
credential cannot accept a hosted callback. Before testing Connect, create a Google
OAuth client of type Web application with this authorized redirect URI:
https://gdoc-mcp-alejo.fly.dev/oauth/google/callbackThen replace the two staged Fly secrets and redeploy:
flyctl secrets set --app gdoc-mcp-alejo \
GOOGLE_CLIENT_ID='<web-client-id>' \
GOOGLE_CLIENT_SECRET='<web-client-secret>'
flyctl deploy --app gdoc-mcp-alejo --remote-onlyFor 80,000 Hours, deploy a separate organization-owned instance, set
ALLOWED_GOOGLE_DOMAIN=80000hours.org, and use an Internal Web OAuth client owned by
the Workspace organization. Keeping personal and organizational deployments separate
prevents a credential switch from invalidating another profile's stored grants.
The service implements MCP dynamic client registration, S256 PKCE, OAuth resource
indicators, Google identity verification, one-hour MCP access tokens, MCP refresh
tokens, and per-user MCP sessions. Google refresh tokens and MCP credentials are stored
in one AES-256-GCM encrypted file on an encrypted persistent volume. The encryption key
is a deployment secret. A Google token is materialized in a mode-0600 temporary home
directory only while gdoc handles a request, then removed.
The current encrypted file store requires one running machine. Before adding replicas, replace it with a transactional shared database or add cross-process locking.
Private build profiles
OAuth client files identify their owning Google Cloud project and must not be committed or attached to a public release. Build profile bundles locally:
npm ci
npm run build:mcpb -- personal \
~/.config/credentials/google-oauth-client-mac-air-2020-personal.json
npm run build:mcpb -- 80000hours \
/path/to/80000hours-google-desktop-oauth-client.jsonOutputs on an Apple Silicon Mac:
dist/gdoc-personal-arm64.mcpb
dist/gdoc-80000hours-arm64.mcpbThe personal profile defaults to alejoacelas@gmail.com. The 80,000 Hours profile
leaves the account open for each employee and sends 80000hours.org as Google's account
chooser hint. The organization OAuth application should use an Internal audience; that,
not the hint, enforces the Workspace domain.
The build fails before creating a bundle if the selected credential file is absent or is not a Google Desktop OAuth client.
Run from source
Developers can use an installed gdoc and any credential source it supports:
npm ci
GDOC_BIN=/absolute/path/to/gdoc npm startThe server exposes typed tools for browser authorization, reading, search, tabs,
revisions, comments, writes, edits, sharing, and document creation. gdoc_cli passes
arguments to an explicit subcommand allowlist without invoking a shell; auth, config,
update, and internal hooks cannot be reached through that raw tool.
Test
npm testThe live deployment can be checked without Google credentials:
curl -fsS https://gdoc-mcp-alejo.fly.dev/health
curl -fsS https://gdoc-mcp-alejo.fly.dev/.well-known/oauth-protected-resource/mcpTests use a fake CLI: they do not open a browser or call Google. The profile build also
validates the manifest and packages a platform-native CLI. After unpacking a built
bundle, a smoke test should list tools and call gdoc_cli with cat --help; this proves
the server can find and execute the bundled binary without accessing Drive.
Platform support
The current builds contain a PyInstaller CLI and are architecture-specific:
arm64: Apple Silicon Macs;x64: Intel Macs when built on an Intel Mac;Windows is not built yet.
MCPB itself supports macOS and Windows. Windows support requires building a Windows
gdoc.exe on Windows and either publishing a separate bundle or adding runtime
OS/architecture selection to one multi-platform bundle.
Security boundaries
Profile OAuth clients are copied only into ignored local build artifacts.
Refresh tokens are created by Google's browser flow; they are never committed or placed in the
.mcpb.Model-provided values go to
execFile, never a shell.The raw CLI tool excludes authentication and administrative commands.
Temporary Markdown files used for writes are mode
0600and removed after use.Remote Google grants and MCP credentials are encrypted at rest; OAuth state and PKCE bind each browser callback to the initiating Claude connection.
The bundled executable is unsigned, so a downloaded bundle may need Gatekeeper approval.
MIT.
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
- Alicense-qualityDmaintenanceEnables Claude to interact with collaborative Docs instances, providing document management, content editing, access control, and AI-powered transformations via MCP.1MIT
- Flicense-qualityBmaintenanceEnables interaction with Gmail and Google Docs via MCP, including email search, read, send, and document read/create operations.
- Alicense-qualityDmaintenanceEnables MCP clients like Claude Desktop and Cursor to interact with Google Docs, Sheets, and Drive, providing tools for reading, writing, formatting documents, managing spreadsheets, and searching Drive files.MIT
- Flicense-qualityBmaintenanceProvides read/write access to Google Sheets and Google Docs through MCP tools, enabling operations like reading sheets, appending rows, and editing documents.
Related MCP Connectors
Google Docs MCP Pack — read, create, and edit Google Docs via OAuth.
Search, document and execute authenticated API calls across 500+ apps via one MCP server
AI-powered medical document management for cancer patients. Google Drive, Gmail, Calendar via MCP.
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/alejoacelas/gdoc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server