MCP server for Google Docs with full tab support
Project description
Google Docs MCP Server
A Model Context Protocol server for Google Docs with full tab support — something most existing servers get wrong or skip entirely.
Uses Google service accounts with domain-wide delegation, so it works in Workspace orgs without OAuth consent screens.
What it does
| Tool | Description |
|---|---|
list_tabs |
List all tabs (including nested) in a document |
read_document |
Read one tab or all tabs as markdown with proper heading levels |
get_document_info |
Lightweight metadata: title, ID, link, tab list |
create_document |
Create a new doc with optional initial text |
append_text |
Append text to the end of a specific tab |
insert_text |
Insert text at a character index in a tab |
replace_text |
Find and replace within a tab (or whole doc) |
batch_update |
Full batchUpdate access — formatting, tables, images, styles |
list_documents |
Search Drive for docs by name |
All tab-targeting tools accept tab_id or tab_title (case-insensitive). The batch_update tool auto-injects tabId into requests so you don't have to.
Why this exists
Google Docs has supported tabs since late 2024, but most MCP servers either:
- Ignore tabs entirely (only read the first tab)
- Don't use
includeTabsContent=True, so tab content is invisible - Don't handle nested tabs
This server handles all of that correctly and converts content to markdown with proper heading structure.
Install
pip install google-docs-mcp-server
Or run directly with uv:
uvx google-docs-mcp-server
Prerequisites
- Python 3.11+
- A Google Cloud service account with domain-wide delegation
Setup
1. Create a GCP service account
- Go to Google Cloud Console and create (or select) a project
- Enable the Google Docs API and Google Drive API
- Create a service account under IAM & Admin > Service Accounts
- Create a JSON key and download it
2. Enable domain-wide delegation
- In GCP, on the service account details page, enable Domain-wide Delegation and note the Client ID
- In Google Workspace Admin > Security > API Controls > Domain-wide Delegation
- Add the Client ID with these scopes:
https://www.googleapis.com/auth/documents https://www.googleapis.com/auth/drive.readonly
3. Configure your MCP client
Add to your MCP config (e.g. ~/.claude/mcp.json or .mcp.json):
{
"mcpServers": {
"google-docs": {
"command": "uvx",
"args": ["google-docs-mcp-server"],
"env": {
"SERVICE_ACCOUNT_PATH": "/path/to/your-service-account-key.json",
"SUBJECT_EMAIL": "you@yourdomain.com"
}
}
}
}
SUBJECT_EMAIL is the Workspace user the service account impersonates.
Environment variables
| Variable | Required | Description |
|---|---|---|
SERVICE_ACCOUNT_PATH |
Yes | Path to the service account JSON key file |
SUBJECT_EMAIL |
Yes | Email of the Workspace user to impersonate |
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file google_docs_mcp_server-0.1.1.tar.gz.
File metadata
- Download URL: google_docs_mcp_server-0.1.1.tar.gz
- Upload date:
- Size: 6.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ba1ad0e27ac0d5d7c08075dfeab48f3b2ade2504f7c2b3961d1c2b00f2210a3
|
|
| MD5 |
9b7e7967cedce54c272fe9e15cf6d8fa
|
|
| BLAKE2b-256 |
bfd481212e1578832e3a92f67958d0212df399f97d37c832ba4791f9a5cfb11c
|
File details
Details for the file google_docs_mcp_server-0.1.1-py3-none-any.whl.
File metadata
- Download URL: google_docs_mcp_server-0.1.1-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f40102141fc09f61a2691cfaab94fbecddcbd1f767d5ce4e9bed4c9903d06f0
|
|
| MD5 |
84f3f34fec301cb43fbdfff9e3c476a5
|
|
| BLAKE2b-256 |
fcf165a386cff89d9200b0a5df8572bdd52b7b74fee843eb274a9c1e59d828fe
|