A Model Context Protocol server
A Model Context Protocol server. The google workspace mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 8 defined tools rather than through you.
A Model Context Protocol (MCP) server that provides tools for interacting with Gmail and Calendar APIs. This server enables you to manage your emails and calendar events programmatically through the MCP interface.
Everything the assistant can do here goes through one of these:
list_emails — List recent emails from your inbox with optional filteringsearch_emails — Advanced email search with Gmail query syntaxsend_email — Send new emails with support for CC and BCCmodify_email — Modify email labels (archive, trash, mark read/unread)list_events — List upcoming calendar events with date range filteringcreate_event — Create new calendar events with attendeesupdate_event — Update existing calendar eventsdelete_event — Delete calendar eventsSetup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
You will need 5 environment variables: GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, GOOGLE_REFRESH_TOKEN, YOUR_CLIENT_ID, YOUR_CLIENT_SECRET. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Plenty of planning and project tracking servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Google Workspace's toolset — list_emails, search_emails, send_email and 5 more — is a fair guide to whether it matches your workflow. It is maintained by epaproditus; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| list_emails | List recent emails from your inbox with optional filtering |
| search_emails | Advanced email search with Gmail query syntax |
| send_email | Send new emails with support for CC and BCC |
| modify_email | Modify email labels (archive, trash, mark read/unread) |
| list_events | List upcoming calendar events with date range filtering |
| create_event | Create new calendar events with attendees |
| update_event | Update existing calendar events |
| delete_event | Delete calendar events |
{
"mcpServers": {
"google-workspace": {
"command": "node",
"args": ["/path/to/google-workspace-server/build/index.js"],
"env": {
"GOOGLE_CLIENT_ID": "your_client_id",
"GOOGLE_CLIENT_SECRET": "your_client_secret",
"GOOGLE_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| GOOGLE_CLIENT_ID | Configuration value read at startup. | Optional |
| GOOGLE_CLIENT_SECRET | Credential the server authenticates with. | Yes |
| GOOGLE_REFRESH_TOKEN | Credential the server authenticates with. | Yes |
| YOUR_CLIENT_ID | Configuration value read at startup. | Optional |
| YOUR_CLIENT_SECRET | Credential the server authenticates with. | Yes |
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Inbox intelligence — search, read, draft and send Gmail through your assistant with OAuth auto-setup.
Read and write Jira, Confluence, Bitbucket, JSM and Compass from your AI client — with your own permissions.
Read and send Telegram messages through your assistant — chats, channels and history via the client API.
Enables Discord bot integration with Model Context Protocol (MCP) compatible applications like Claude Desktop.
Exposes REST APIs defined by OpenAPI specifications as Model Context Protocol (MCP) tools, facilitating seamless integration into MCP-based workflows.