A Model Context Protocol server
Google workspace no calendar deletetion mcp server connects Google Workspace No Calendar Deletetion to AI assistants that speak the Model Context Protocol. A Model Context Protocol server.
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.
Once connected, the assistant can call these 6 tools directly:
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 attendeesThe server is distributed via npm as @smithery/cli, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.
Before the server will start you need to supply 5 environment variables: GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, GOOGLE_REFRESH_TOKEN, YOUR_CLIENT_ID, YOUR_CLIENT_SECRET. Keep credentials in your client's env block or a secrets manager rather than committing them.
Communication servers earn their keep on volume — summarising channels and threads that would otherwise cost you an hour of scrollback. Google Workspace No Calendar Deletetion sits in that group, and the shape of its toolset — list_emails, search_emails, send_email among others — tells you what it is really for. Worth comparing against the other communication servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| 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 |
{
"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 workspace, on speaking terms with AI — search, read and write Notion pages and databases.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Search and read your Drive — Docs, Sheets and files become context your assistant can actually use.
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Stop letting your assistant hallucinate n8n node parameters — this server hands it the real schemas, templates and validation.