gmail-cleanup-mcp
Provides tools for Gmail inbox cleanup, enabling trashing emails, bulk deletion, search-and-trash with dry-run preview, managing filters, and extracting unsubscribe information from emails.
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., "@gmail-cleanup-mcpDo a dry run — show me what would get trashed from LinkedIn"
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.
Gmail Cleanup MCP Server
A focused Model Context Protocol server for Gmail inbox cleanup — trash emails, manage filters, and extract unsubscribe links. Designed to complement Anthropic's built-in Gmail connector, which handles read, search, draft, and send.
Patched fork of dcerniglia/gmail-cleanup-mcp (MIT licensed). This fork fixes a bug where
search_and_trashandbatch_trash_emailssilently dropped failures instead of retrying — firing 50 concurrent trash requests could trip Gmail's rate limit and drop ~half a batch with no error shown. Now both tools batch smaller, back off, auto-retry, and report the real error per failed message.
Tools
Tool | Description |
| Move a single email to trash (30-day safety net) |
| Trash up to 500 emails by message ID, processed in batches of 50 |
| Find emails by Gmail query and trash them — supports dry-run preview |
| Create filters to auto-archive, auto-label, auto-delete, or forward |
| List all existing Gmail filters with criteria and actions |
| Remove a Gmail filter by ID |
| Extract |
Related MCP server: Gmail AutoAuth MCP Server
Prerequisites
Node.js 18+
A Google Cloud project with the Gmail API enabled
OAuth 2.0 credentials (Desktop app type)
Setup
1. Google Cloud OAuth
Already have
~/.gmail-mcp/gcp-oauth.keys.jsonfrom another Gmail MCP server? Skip to step 2 — this server uses the same credential location.
Go to Google Cloud Console
Create a project (or reuse an existing one) and enable the Gmail API
Go to Credentials → Create Credentials → OAuth client ID
Choose Desktop app, download the JSON
Save it as
~/.gmail-mcp/gcp-oauth.keys.json(or placegcp-oauth.keys.jsonin the project directory — it will be copied automatically on first run)
2. Install & Build
git clone https://github.com/davidcerniglia/gmail-cleanup-mcp.git
cd gmail-cleanup-mcp
npm install
npm run build3. Authenticate
npm run authThis opens a browser for Google OAuth consent. Credentials are saved to ~/.gmail-mcp/credentials.json with 0600 permissions (owner-only).
4. Add to Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"gmail-cleanup": {
"command": "node",
"args": ["/absolute/path/to/gmail-cleanup-mcp/dist/index.js"]
}
}
}Or for Claude Code, add to .claude/settings.json:
{
"mcpServers": {
"gmail-cleanup": {
"command": "node",
"args": ["/absolute/path/to/gmail-cleanup-mcp/dist/index.js"]
}
}
}Usage Examples
Prompt | What happens |
"Trash all emails from newsletter@spam.com older than 6 months" |
|
"Do a dry run — show me what would get trashed from LinkedIn" |
|
"Create a filter to auto-archive emails from nextdoor.com" |
|
"Check if that marketing email has an unsubscribe link" |
|
How it works with Claude's built-in Gmail
Built-in Gmail connector | This server | |
Search & read | Yes | — |
Draft & send | Yes | — |
Trash emails | — | Yes |
Bulk cleanup | — | Yes (up to 500/call) |
Filter management | — | Yes |
Unsubscribe extraction | — | Yes |
Security
Minimal scopes:
gmail.modify+gmail.settings.basic— the minimum needed for trash and filter operationsTrash, not delete: All deletions use Gmail's trash (30-day recovery window), never permanent delete
Dry-run mode:
search_and_trashcan preview matches before committingRestrictive file permissions: Credentials stored with
0600(owner read/write only)No attachment handling: Zero path traversal risk
No filesystem access beyond credential storage in
~/.gmail-mcp/
Environment Variables
Variable | Default | Description |
|
| Path to OAuth client keys |
|
| Path to stored credentials |
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityDmaintenanceEnables comprehensive Gmail management through the Gmail API, including sending/receiving emails, organizing labels and threads, managing drafts, and configuring account settings with secure OAuth2 authentication.641,3981MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Gmail through natural language interactions, supporting email operations (send, read, search, draft), comprehensive attachment handling (send, receive, download), label management, filters, and batch operations with automatic OAuth2 authentication.192MIT
- AlicenseNot gradedqualityFmaintenanceProvides comprehensive Gmail integration with 25+ tools for intelligent email management, including AI-powered categorization, advanced search and filtering, automated archiving and cleanup, analytics, and secure OAuth2 authentication.1922MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Gmail through natural language, supporting operations like sending, searching, and reading emails. It includes comprehensive label management, batch processing, and a streamlined OAuth2 auto-authentication flow.MIT
Related MCP Connectors
Manage Gmail end-to-end: search, read, send, draft, label, and organize threads. Automate workflow…
Manage Gmail messages, threads, labels, drafts, and settings from your workflows. Send and organiz…
AI email automation, follow-ups, training, previews, and mailbox troubleshooting.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/adityai4/gmail-cleanup-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server