AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Zoho Mail Mcp

mcp-fujiwarachoki-zoho-mail-mcp · by FujiwaraChoki

MCP server for Zoho Mail - read, send, search, reply to, and delete emails from AI assistants

No reviews yet
0 installs
5 views
0.0% view→install

Install

$ agentstack add mcp-fujiwarachoki-zoho-mail-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-fujiwarachoki-zoho-mail-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Zoho Mail Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

  1. Go to the Zoho API Console (use .com for US datacenter)
  2. Click Add Client > Self Client
  3. Note your Client ID and Client Secret

2. Generate a Refresh Token

Run the interactive setup helper:

bun run setup.ts

Or manually:

  1. 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 ``

  1. Set duration to 10 minutes, add a description, and click Create
  2. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.