Google Workspace MCP Server
Provides tools for drafting, updating, sending, and retrieving emails via the Gmail API.
Provides tools for creating, reading, appending content to, and retrieving metadata of Google Docs 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., "@Google Workspace MCP ServerDraft an email to John about tomorrow's meeting"
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.
Google Workspace MCP Server
A generic Model Context Protocol (MCP) Server that exposes Gmail and Google Docs as standardized tools, enabling any MCP-compatible AI agent (Claude, ChatGPT, Cursor, VS Code agents, etc.) to securely interact with Google Workspace.
Features
Gmail Tools — Draft, update, send, and retrieve emails
Google Docs Tools — Create, read, append to, and inspect documents
OAuth 2.0 — Secure authentication with automatic token refresh
MCP-Compliant — Works with any MCP client out of the box
Structured Responses — Consistent JSON response envelopes for all tools
Extensible — Modular architecture for adding Google Sheets, Drive, Calendar, etc.
Related MCP server: Gmail MCP Server
Prerequisites
Python 3.11+
A Google Cloud project with Gmail API and Google Docs API enabled
OAuth 2.0 credentials (
credentials.json)
Google Cloud Setup
Go to the Google Cloud Console
Create a new project (or select an existing one)
Navigate to APIs & Services → Library
Enable Gmail API and Google Docs API
Navigate to APIs & Services → Credentials
Click Create Credentials → OAuth 2.0 Client ID
Select Desktop app as the application type
Download the credentials file and save it as
credentials.jsonin the project rootNavigate to OAuth consent screen and add your email as a test user
Installation
# Clone the repository
git clone <repository-url>
cd google-mcp-server
# Create a virtual environment
python -m venv .venv
source .venv/bin/activate # macOS/Linux
# .venv\Scripts\activate # Windows
# Install the package
pip install -e .
# Install dev dependencies (optional)
pip install -e ".[dev]"Configuration
Copy the environment template and configure:
cp .env.example .envEdit .env as needed:
GOOGLE_CREDENTIALS_PATH=./credentials.json
GOOGLE_TOKEN_PATH=./token.json
LOG_LEVEL=INFOFirst Run
On the first run, the server will open your browser for Google OAuth consent:
python -m google_mcp_server.serverA browser window will open asking you to sign in to Google
Grant the requested permissions (Gmail compose/read, Google Docs read/write)
The token is saved to
token.jsonfor future useThe server starts on stdio transport, ready for MCP client connections
Available Tools
Gmail
Tool | Description |
| Create a new email draft with To, CC, BCC, Subject, and Body |
| Update an existing draft (unchanged fields are preserved) |
| Send an email directly without creating a draft |
| Send a previously created draft |
| Retrieve a draft by ID with headers and snippet |
Google Docs
Tool | Description |
| Create a new document with optional initial content |
| Read the full text content of a document |
| Append text to the end of a document |
| Get document metadata (title, revision, URL) |
MCP Client Configuration
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"google-workspace": {
"command": "python",
"args": ["-m", "google_mcp_server.server"],
"env": {
"GOOGLE_CREDENTIALS_PATH": "/absolute/path/to/credentials.json",
"GOOGLE_TOKEN_PATH": "/absolute/path/to/token.json"
}
}
}
}Cursor
Add to your MCP settings:
{
"mcpServers": {
"google-workspace": {
"command": "python",
"args": ["-m", "google_mcp_server.server"],
"cwd": "/path/to/google-mcp-server"
}
}
}VS Code (Copilot)
Add to your VS Code settings:
{
"mcp": {
"servers": {
"google-workspace": {
"command": "python",
"args": ["-m", "google_mcp_server.server"],
"cwd": "/path/to/google-mcp-server"
}
}
}
}Vercel Deployment
This MCP server is configured for serverless deployment on Vercel using Server-Sent Events (SSE).
Push your code to a GitHub repository.
Go to the Vercel Dashboard and create a new project from your repository.
In the environment variables section, add the following variable:
Key:
GOOGLE_TOKEN_JSONValue: (Paste the exact contents of your local
token.jsonfile)
Also add:
Key:
VERCELValue:
1
Deploy the project!
Once deployed, your MCP SSE endpoint will be available at:
https://<your-vercel-domain>/sse
Clients connecting to a Vercel-deployed server must use the SSE transport configuration instead of the stdio transport.
Testing with MCP Inspector
Use the official MCP Inspector to test your server interactively:
npx -y @modelcontextprotocol/inspector python -m google_mcp_server.serverRunning Tests
# Run all tests
pytest tests/ -v
# Run with coverage
pytest tests/ --cov=src/google_mcp_server --cov-report=term-missing
# Lint
ruff check src/ tests/Docker
# Build
docker build -f docker/Dockerfile -t google-mcp-server .
# Run (mount your credentials)
docker run -it \
-v $(pwd)/credentials.json:/app/credentials.json \
-v $(pwd)/token.json:/app/token.json \
google-mcp-serverProject Structure
google-mcp-server/
├── pyproject.toml # Project config & dependencies
├── .env.example # Environment variable template
├── credentials.json # Google OAuth credentials (gitignored)
├── token.json # Cached OAuth token (gitignored)
├── src/
│ └── google_mcp_server/
│ ├── server.py # FastMCP server entry point
│ ├── config.py # Settings & environment loading
│ ├── auth/
│ │ └── oauth.py # OAuth 2.0 flow & token management
│ ├── gmail/
│ │ ├── service.py # Gmail API wrapper functions
│ │ └── tools.py # Gmail MCP tool definitions
│ ├── docs/
│ │ ├── service.py # Google Docs API wrapper functions
│ │ └── tools.py # Docs MCP tool definitions
│ └── utils/
│ └── errors.py # Error handling & response formatting
├── tests/ # Unit tests
└── docker/
└── Dockerfile # Docker deploymentLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/risvan1605/MCP-Server---Gmail-and-Doc'
If you have feedback or need assistance with the MCP directory API, please join our Discord server