
Company News
Jerod Santo Joins Socket as Head of Media
Allow myself to introduce... myself.
@a1-x-tech/mcp-google-docs
Advanced tools
MCP server for the Google Docs API — read documents as text, structure or Markdown, edit text by ranges, style, tables, images, comments and export. For Claude, Cursor, Codex and other AI clients.
English | Русский
A1 Google Docs MCP lets an AI app read and edit Google Docs in plain language. Read a document as text or Markdown, change an exact passage, style headings, lists and tables, work through comment threads and export the result to PDF or DOCX.
It uses the Google Docs API with your Google account. It edits by exact index ranges rather than by guesswork, and makes the limits of the Docs API explicit instead of implying that every document task is possible.
Start with a read-only question:
Read the launch plan document and summarize its unresolved comment threads.
Connect the server · Explore use cases · Open technical documentation
You: Show me the text and comments of the launch plan document.
Assistant: Reads the document as compact text blocks and lists its comment threads. Nothing changes.
You: Rewrite the “Timeline” paragraph to say the beta starts on March 3.
Assistant: Shows the exact range it will replace and the proposed text, then asks for confirmation before editing.
You: Confirm.
Assistant: Replaces that one range. The rest of the document, its formatting and its comments stay as they were.
You need Node.js 20+, a Google account and OAuth credentials from a Google Cloud project with the Google Docs API and the Google Drive API enabled.
In the app: open Settings → Plugins → MCP servers, select Add server, then add npx -y @a1-x-tech/mcp-google-docs@latest with GOOGLE_DOCS_CLIENT_ID, GOOGLE_DOCS_CLIENT_SECRET and GOOGLE_DOCS_REFRESH_TOKEN.
From the command line:
codex mcp add google-docs \
--env GOOGLE_DOCS_CLIENT_ID=your_client_id \
--env GOOGLE_DOCS_CLIENT_SECRET=your_client_secret \
--env GOOGLE_DOCS_REFRESH_TOKEN=your_refresh_token \
-- npx -y @a1-x-tech/mcp-google-docs@latest
codex mcp list
claude mcp add \
--env GOOGLE_DOCS_CLIENT_ID=your_client_id \
--env GOOGLE_DOCS_CLIENT_SECRET=your_client_secret \
--env GOOGLE_DOCS_REFRESH_TOKEN=your_refresh_token \
--transport stdio --scope user google-docs \
-- npx -y @a1-x-tech/mcp-google-docs@latest
claude mcp list
Open Settings → Developer → Edit Config and add:
{
"mcpServers": {
"google-docs": {
"command": "npx",
"args": ["-y", "@a1-x-tech/mcp-google-docs@latest"],
"env": {
"GOOGLE_DOCS_CLIENT_ID": "your_client_id",
"GOOGLE_DOCS_CLIENT_SECRET": "your_client_secret",
"GOOGLE_DOCS_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}
If Edit Config is unavailable, edit ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows.
Add this to ~/.cursor/mcp.json on macOS/Linux or %USERPROFILE%\.cursor\mcp.json on Windows:
{
"mcpServers": {
"google-docs": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@a1-x-tech/mcp-google-docs@latest"],
"env": {
"GOOGLE_DOCS_CLIENT_ID": "your_client_id",
"GOOGLE_DOCS_CLIENT_SECRET": "your_client_secret",
"GOOGLE_DOCS_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}
Run MCP: Open User Configuration and add:
{
"servers": {
"google-docs": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@a1-x-tech/mcp-google-docs@latest"],
"env": {
"GOOGLE_DOCS_CLIENT_ID": "${input:docs_client_id}",
"GOOGLE_DOCS_CLIENT_SECRET": "${input:docs_client_secret}",
"GOOGLE_DOCS_REFRESH_TOKEN": "${input:docs_refresh_token}"
}
}
},
"inputs": [
{ "type": "promptString", "id": "docs_client_id", "description": "Google OAuth client ID" },
{ "type": "promptString", "id": "docs_client_secret", "description": "Google OAuth client secret", "password": true },
{ "type": "promptString", "id": "docs_refresh_token", "description": "Google OAuth refresh token", "password": true }
]
}
Check it with MCP: List Servers.
create_document creates a document — empty, or converted from Markdown in one call.read_document_text before each edit and to edit from the end of the document backwards.import_markdown replaces the entire body: comment anchors, positioned objects, headers/footers and extra tabs do not survive the conversion.Exports are capped at 10 MB and do not include comments or suggestions. Inline images are fetched by Google from a public URL (PNG/JPEG/GIF, up to 50 MB and 25 megapixels); there is no channel for uploading image files.
| Operation | What happens | Confirmation boundary |
|---|---|---|
| Read a document, its tabs or comments | Reads content and structure | No change |
| Export a document | Writes a local file when output_path is set; the document itself is untouched | Changes local files only |
| Create a document | Adds a new document | Changes Google Docs |
| Insert text, a table, a break or an image | Adds content | Changes a document |
| Style text or paragraphs, manage bullets | Overwrites formatting on a range | Changes a document |
| Replace or delete a range, find and replace | Removes existing content | Destructive |
| Replace the whole document with Markdown | Replaces the entire body | Destructive |
| Manage comments | Creates, replies, resolves or permanently deletes | Potentially destructive |
| Raw API request | Can call API methods without a dedicated tool | Potentially destructive |
The AI client controls confirmation prompts. The server marks reads, writes and destructive tools so the client can distinguish an inspection from a live change.
Google Docs requires OAuth 2.0; an API key is not enough.
Create or select a Google Cloud project and enable both the Google Docs API and the Google Drive API (export, Markdown conversion and comments go through Drive endpoints).
Configure the OAuth consent screen and create a Desktop app OAuth client.
Authorize the Google account that owns or can edit the documents. The OAuth 2.0 Playground can obtain the refresh token when Use your own OAuth credentials is enabled.
Request both scopes:
https://www.googleapis.com/auth/documents
https://www.googleapis.com/auth/drive
For a narrower setup, drive.file is enough when export, Markdown and comments only touch documents created through this OAuth client, and the read-only pair documents.readonly + drive.readonly is enough for the read-only tools.
Testing-mode OAuth refresh tokens can expire after seven days. Publish the OAuth app, or use an Internal app in a Workspace domain, when you need long-lived access. Treat the client secret and refresh token as passwords.
| Variable | Required | Description |
|---|---|---|
GOOGLE_DOCS_CLIENT_ID | Yes* | OAuth client ID. |
GOOGLE_DOCS_CLIENT_SECRET | Yes* | OAuth client secret. |
GOOGLE_DOCS_REFRESH_TOKEN | Yes* | OAuth refresh token. |
GOOGLE_DOCS_ACCESS_TOKEN | Yes* | Short-lived alternative to the OAuth trio (~1 hour). |
GOOGLE_DOCS_API_BASE | No | Google Docs API base URL override. |
GOOGLE_DOCS_DRIVE_API_BASE | No | Drive API base URL override (export, Markdown, comments). |
GOOGLE_DOCS_TIMEOUT_MS | No | Per-request timeout; default 60000 ms. |
GOOGLE_DOCS_MAX_RETRIES | No | Temporary-error retries; default 3. |
* Provide either the OAuth trio or an access token.
ASKADS_TELEMETRY=0 to opt out.429, the server backs off and retries; reads also retry after network and 5xx errors, while writes are never replayed after an uncertain failure — a replayed write could duplicate the edit.Found a bug or need a scenario? Create an issue or write in Telegram.
You made it to the end!
FAQs
MCP server for the Google Docs API — read documents as text, structure or Markdown, edit text by ranges, style, tables, images, comments and export. For Claude, Cursor, Codex and other AI clients.
The npm package @a1-x-tech/mcp-google-docs receives a total of 30 weekly downloads. As such, @a1-x-tech/mcp-google-docs popularity was classified as not popular.
We found that @a1-x-tech/mcp-google-docs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Allow myself to introduce... myself.

Research
/Security News
A Twitch browser extension on Chrome and Firefox forwards users’ live OAuth session tokens through proxies controlled by a Russian bot service.

Security News
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.