Install
$ agentstack add mcp-fujiwarachoki-zoho-mail-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: FujiwaraChoki
- Source: FujiwaraChoki/zoho-mail-mcp
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.