Google Workspace MCP Server
Provides tools for sending emails and creating drafts via the Gmail API.
Provides a tool to append text content to an existing Google Doc.
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 Sarah about the 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 (Gmail + Google Docs)
A Model Context Protocol (MCP) server that exposes Google Workspace capabilities — specifically Gmail and Google Docs — as standardized MCP tools.
Features
send_email: Send an email immediately via the authenticated Gmail account.draft_email: Create a draft in the authenticated Gmail account without sending.append_to_google_doc: Append text content to the end of an existing Google Doc.
Related MCP server: Google Workspace MCP Server
Setup Instructions
1. Google Cloud Project Setup
Go to the Google Cloud Console.
Create a new project or select an existing one.
Navigate to APIs & Services > Library.
Search for and enable the Gmail API and Google Docs API.
Navigate to APIs & Services > OAuth consent screen.
Configure the consent screen (External or Internal).
Add the following scopes:
https://www.googleapis.com/auth/gmail.sendhttps://www.googleapis.com/auth/gmail.composehttps://www.googleapis.com/auth/documents
Add your email address as a Test User if your app is in testing mode.
Navigate to APIs & Services > Credentials.
Click Create Credentials > OAuth client ID.
Choose Desktop app as the application type.
Click Create.
Download the JSON file and rename it to
credentials.json. Place it in the root of this project.
2. Environment Setup
Copy
.env.exampleto.env(optional, as defaults are used if not provided).Install the project dependencies:
pip install -e .
3. First Run (Authentication)
Before an MCP client can use the server, you must authenticate it manually to generate the token.json file.
Run the server directly:
gmail-docs-mcpThis will open a browser window asking you to log in with your Google account and grant the requested permissions. Once completed, a token.json file will be created. You can then stop the server (Ctrl+C).
4. MCP Client Configuration
Configure your MCP client (e.g., Claude Desktop) to run this server. Add the following to your MCP client's configuration file:
{
"mcpServers": {
"google-workspace": {
"command": "gmail-docs-mcp",
"env": {
"GOOGLE_CREDENTIALS_PATH": "/absolute/path/to/credentials.json",
"GOOGLE_TOKEN_PATH": "/absolute/path/to/token.json"
}
}
}
}Note: Make sure to use absolute paths for the credentials and token files.
Testing
Run unit tests with pytest:
pip install -e ".[dev]"
pytestManual Smoke-Test Checklist
Send test email: Invoke
send_emailwith your own email address to verify receipt.Create draft: Invoke
draft_emailand check your Gmail Drafts folder.Append to a doc: Create a test Google Doc, copy its URL or ID, and invoke
append_to_google_doc. Check the document to verify the text was appended at the end.
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/speedy133/mcpserver1'
If you have feedback or need assistance with the MCP directory API, please join our Discord server