Generic Server For Google Workspace
FreeNot checkedEnables AI agents to send emails, create drafts in Gmail, and append content to Google Docs via standardized MCP tools.
About
Enables AI agents to send emails, create drafts in Gmail, and append content to Google Docs via standardized MCP tools.
README
A Model Context Protocol (MCP) server that securely exposes Google Workspace capabilities to AI Agents (like Claude Desktop, OpenAI, or Cursor) through standardized MCP tools.
This server acts as a bridge, allowing any MCP-compatible AI client to interact with Google APIs without requiring custom integrations inside the agent itself.
Features & Tools
Currently, the server exposes the following tools:
gmail_send_email: Sends an email (supports To, Cc, Bcc, Subject, and Text/HTML bodies).gmail_create_draft: Creates an email draft in the authenticated user's account.gdocs_append_content: Appends text to the end of a specific Google Document (requires the Document ID).
Prerequisites
- Node.js (v18 or newer)
- Google Cloud Console Project:
- Enable the Gmail API and Google Docs API.
- Create an OAuth 2.0 Client ID (Web application).
- Set the Authorized Redirect URI to
http://localhost(or your domain).
Setup & Local Authentication
Install Dependencies
npm installConfigure Environment Variables Copy
.env.exampleto.envand add your Google credentials:GOOGLE_CLIENT_ID=your_client_id_here GOOGLE_CLIENT_SECRET=your_client_secret_here GOOGLE_REDIRECT_URI=http://localhostGenerate OAuth Tokens To grant the server access to your Google account, you must complete the OAuth flow once. Run the token generation script:
npm run build node dist/auth/generate_token.jsFollow the on-screen instructions. The script will save your access and refresh tokens locally in
.tokens.json.
Running the Server
Local Development
To run the server locally, you can use the standard build and start scripts:
npm run build
npm start
Note: The server is configured to run over HTTP using Server-Sent Events (SSE) by default on http://localhost:3000/sse.
Cloud Deployment (Railway)
This server is pre-configured to be easily deployable to cloud services like Railway.
When deploying to a remote host:
- Ensure the
TOKEN_PATHenvironment variable is set to a persistent volume (e.g.,/app/data/.tokens.json), as the local file system in most cloud providers is ephemeral. - The server will automatically bind to the
PORTenvironment variable provided by your cloud host.
For full instructions, see the Deployment Plan.
Connecting an AI Agent
To connect an AI Agent to this MCP Server, add the HTTP URL to your agent's MCP configuration file (e.g., in Claude Desktop).
{
"mcpServers": {
"google-workspace": {
"url": "http://localhost:3000/sse"
}
}
}
(If deployed remotely, replace the URL with your remote domain, e.g., https://my-server.up.railway.app/sse).
Installing Generic Server For Google Workspace
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/Santhosh-A-Git/MCP-ServerFAQ
Is Generic Server For Google Workspace MCP free?
Yes, Generic Server For Google Workspace MCP is free — one-click install via Unyly at no cost.
Does Generic Server For Google Workspace need an API key?
No, Generic Server For Google Workspace runs without API keys or environment variables.
Is Generic Server For Google Workspace hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Generic Server For Google Workspace in Claude Desktop, Claude Code or Cursor?
Open Generic Server For Google Workspace on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Gmail
Read, send and search emails from Claude
by GoogleSlack
Send, search and summarize Slack messages
by SlackRunbear
No-code MCP client for team chat platforms, such as Slack, Microsoft Teams, and Discord.
Discord Server
A community discord server dedicated to MCP by [Frank Fiegel](https://github.com/punkpeye)
Compare Generic Server For Google Workspace with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All communication MCPs
