Google Workspace MCP Server
Allows creating email drafts in Gmail.
Allows appending text or structured styling requests to Google Docs documents.
Click on "Deploy 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 Serverappend 'Weekly update' to my report doc"
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 (Python)
A FastAPI-based local server that acts as a secure tool bridge to Google Docs and Gmail via OAuth 2.0. Before performing any write or compose actions, the server displays the payload in the terminal and blocks for user confirmation.
Setup Instructions
1. Enable APIs in Google Cloud Console
Go to the Google Cloud Console.
Create a new project or select an existing one.
Search for and enable the following APIs:
Google Docs API
Gmail API
Configure the OAuth Consent Screen:
Set User Type to External (or Internal if inside an organization).
Add the scopes:
https://www.googleapis.com/auth/documentshttps://www.googleapis.com/auth/gmail.compose
Add your test email address as a Test User (required while in testing status).
Create credentials:
Go to the Credentials page.
Click Create Credentials -> OAuth Client ID.
Select application type: Desktop App.
Click Create, then download the client secrets JSON file.
Save the downloaded file inside this directory as
credentials.json.
2. Install Dependencies
Create a virtual environment and install the required Python packages:
# Windows
python -m venv venv
venv\Scripts\activate
# Install packages
pip install -r requirements.txtRelated MCP server: Google MCP Server
Running the Server
Start the FastAPI application:
python server.pyAuthentication Flow
On the first run, the server will detect that
token.jsonis missing and automatically launch a Google OAuth login screen in your default web browser.Log in using your registered Google test user email.
Click "Continue" through the safety warnings (since the app is unverified).
Once completed, a
token.jsonfile is saved in this directory. Subsequent runs will use this token directly and bypass browser login.
API Endpoints
1. Append to Google Doc
Appends text or executes structured styling requests at the end of the document.
URL:
POST /append_to_docPayload Format (Plain Text):
{
"doc_id": "YOUR_GOOGLE_DOC_ID",
"content": "Line of text to append\n"
}Payload Format (Structured Styles):
{
"doc_id": "YOUR_GOOGLE_DOC_ID",
"content": "[{\"insertText\":{\"text\":\"Theme Heading\\n\",\"endOfSegmentLocation\":{}}},{\"updateParagraphStyle\":{\"paragraphStyle\":{\"namedStyleType\":\"HEADING_3\"},\"fields\":\"namedStyleType\",\"range\":{\"startIndex\":1,\"endIndex\":14}}}]"
}2. Create Email Draft
Creates a draft inside your Gmail account.
URL:
POST /create_email_draftPayload Format:
{
"to": ["stakeholder1@example.com", "stakeholder2@example.com"],
"subject": "Groww Weekly Pulse — 2026-W24",
"body": "Optional plain text body",
"html_body": "<div><h2>HTML Teaser</h2><p>Teaser details...</p></div>",
"text_body": "Plain text teaser details..."
}Console Approval Gate
When a POST request is received, the server blocks execution and displays an approval request in the terminal:
==================================================
ACTION REQUESTED: append_to_doc
PAYLOAD:
{
"doc_id": "YOUR_GOOGLE_DOC_ID",
"content": "Line of text to append\n"
}
==================================================
Approve? (y/n): Only typing y or yes will execute the Google API request. Any other input returns an HTTP 403 Forbidden error to the requester.
This server cannot be deployed
Maintenance
Related MCP Connectors
Permissioned access to Gmail, Drive and Calendar via the user's own Google account
OAuth 2.1 short-link tools for AI agents with scoped tokens, approvals, audit logs, and revocation.
Multiple Gmail accounts, editable Google Sheets & Docs for AI agents. Deny-by-default access rules.
Task management for people and AI agents, with scoped OAuth access to issues, projects, and docs.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables natural language control over Google Workspace (Gmail, Drive, Calendar, Sheets, Slides, Tasks) through secure OAuth 2.1 authentication, with vault-level security and multi-user isolation.221 npm7-
- FlicenseNot gradedqualityDmaintenanceEnables appending to Google Docs and creating Gmail drafts with OAuth 2.0 authentication and an approval gate that requires manual confirmation before each action.-
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to send Gmail emails, create drafts, and append content to Google Docs through MCP tools. Provides secure OAuth-based integration with Google Workspace.221 npmMIT
- AlicenseNot gradedqualityBmaintenanceEnables MCP-compatible AI agents to create Gmail drafts, send emails, and append content to Google Docs with OAuth-secured authentication.24 npmMIT