Zoho Mail MCP Server
Enables AI assistants to read, send, search, reply to, and delete emails directly from a Zoho Mail account.
README
Zoho Mail MCP Server
An MCP (Model Context Protocol) server that connects AI assistants like Claude to your Zoho Mail account. Read, send, search, reply to, and delete emails directly from your AI workflow.
Tools
| Tool | Description |
|---|---|
list_folders |
List all mail folders with unread/total counts |
list_emails |
List emails in a folder with filtering and pagination |
read_email |
Read the full content of a specific email |
search_emails |
Search emails by keyword across all folders |
send_email |
Send a new email |
reply_email |
Reply to an existing email (reply / reply-all) |
delete_email |
Delete an email (trash or permanent) |
Setup
1. Create a Zoho API Client
- Go to the Zoho API Console (use
.comfor US datacenter) - Click Add Client > Self Client
- Note your Client ID and Client Secret
2. Generate a Refresh Token
Run the interactive setup helper:
bun run setup.ts
Or manually:
- In the Self Client, generate a grant code with these scopes:
ZohoMail.accounts.READ,ZohoMail.folders.READ,ZohoMail.messages.READ,ZohoMail.messages.CREATE,ZohoMail.messages.DELETE - Set duration to 10 minutes, add a description, and click Create
- Copy the generated code and exchange it using the setup script
3. Verify Credentials
ZOHO_CLIENT_ID=your_id ZOHO_CLIENT_SECRET=your_secret ZOHO_REFRESH_TOKEN=your_token bun run setup.ts --verify
4. Configure Your MCP Client
Claude Code (~/.claude.json)
{
"mcpServers": {
"zoho-mail": {
"command": "bun",
"args": ["run", "/path/to/zoho-mail-mcp/src/index.ts"],
"env": {
"ZOHO_CLIENT_ID": "your_client_id",
"ZOHO_CLIENT_SECRET": "your_client_secret",
"ZOHO_REFRESH_TOKEN": "your_refresh_token",
"ZOHO_DATACENTER": "eu"
}
}
}
}
Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"zoho-mail": {
"command": "bun",
"args": ["run", "/path/to/zoho-mail-mcp/src/index.ts"],
"env": {
"ZOHO_CLIENT_ID": "your_client_id",
"ZOHO_CLIENT_SECRET": "your_client_secret",
"ZOHO_REFRESH_TOKEN": "your_refresh_token",
"ZOHO_DATACENTER": "eu"
}
}
}
}
Environment Variables
| Variable | Required | Description |
|---|---|---|
ZOHO_CLIENT_ID |
Yes | OAuth2 Client ID from Zoho API Console |
ZOHO_CLIENT_SECRET |
Yes | OAuth2 Client Secret |
ZOHO_REFRESH_TOKEN |
Yes | OAuth2 Refresh Token (generated via setup) |
ZOHO_DATACENTER |
No | Zoho datacenter: eu (default), us, in, au, jp |
Features
- OAuth2 with auto-refresh - tokens are refreshed automatically, no manual intervention needed
- Rate limiting - built-in sliding window rate limiter (30 req/min) to stay within Zoho API limits
- Retry on 401 - automatically refreshes token and retries on authentication failures
- HTML to plain text - email content is converted to clean plain text for AI consumption
Requirements
- Bun runtime
- A Zoho Mail account with API access
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.