Zoho Mail MCP Server

Zoho Mail MCP Server

Enables AI assistants to read, send, search, reply to, and delete emails directly from a Zoho Mail account.

Category
Visit Server

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

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

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured