zoho-mail-mcp
Provides tools for interacting with Zoho Mail, enabling listing folders and messages, searching emails, reading full email content, and creating drafts (it does not send 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., "@zoho-mail-mcpdraft a reply to the email from Sarah about the budget"
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.
zoho-mail-mcp
A Model Context Protocol (MCP) server that gives Claude read access to Zoho Mail — list and search your inbox, read full email content, and save draft replies for you to review and send yourself. It never sends anything on its own.
Why this exists
Claude chat doesn't ship with a first party Zoho connector. This server
fills that gap the same way github-mcp fills it for GitHub: a small
local server Claude Desktop talks to over stdio, authenticated with your
own Zoho credentials.
Related MCP server: zoho-mail-mcp
What it can do
List folders (Inbox, Drafts, Sent, custom folders)
List recent emails in a folder
Search emails using Zoho Mail's search syntax
Read the full content of a specific email
Save a draft reply to an email, properly threaded (To,
Re: subject, and the reply headers filled in automatically)Save a new draft from scratch
It cannot send email. There is no send tool, on purpose — every
draft it creates sits in your Drafts folder until you open it in Zoho
Mail and send it yourself.
Setup
1. Clone and install
git clone https://github.com/JessicaTemplet/zoho-mail-mcp.git
cd zoho-mail-mcp
npm install
npm run build2. Register a Self Client in the Zoho API Console
Zoho Mail's API uses OAuth2, not a simple token like GitHub's PATs, but for a personal script like this one, Zoho has a "Self Client" flow that skips the browser consent screen entirely.
Go to api-console.zoho.com and sign in with the same Zoho account as your mailbox.
Click GET STARTED, hover over Self Client, click CREATE NOW, then CREATE and OK.
You'll land on a Client Secret tab showing a Client ID and Client Secret. Copy both — you'll need them below.
3. Generate an authorization code, then trade it for a refresh token
Still in the API Console, on the same Self Client:
Click the Generate Code tab.
Scope: paste this exactly —
ZohoMail.accounts.READ,ZohoMail.folders.READ,ZohoMail.messages.READ,ZohoMail.messages.CREATESet an expiry time (10 minutes is plenty — you're about to use it immediately) and a description (e.g. "claude mcp"), then click CREATE.
Copy the authorization code it generates. It's only valid for the window you picked, so move to the next step right away.
Exchange it for tokens. Run this in a terminal (replace the three bracketed values):
curl "https://accounts.zoho.com/oauth/v2/token?client_id=[CLIENT_ID]&client_secret=[CLIENT_SECRET]&grant_type=authorization_code&code=[AUTH_CODE]"If your Zoho Mail is on a non-US data center (the URL you use to check mail is
mail.zoho.eu,.in, etc. instead ofmail.zoho.com), useaccounts.zoho.eu/.in/ etc. here instead.The response is JSON with an
access_token(ignore it, it expires in an hour) and arefresh_token(this is the one that matters — it doesn't expire on its own). Save the refresh token somewhere safe.
4. Add it to your Claude Desktop config
Open Claude Desktop → Settings → Developer → Edit Config, and add:
{
"mcpServers": {
"zoho-mail": {
"command": "node",
"args": ["/absolute/path/to/zoho-mail-mcp/dist/index.js"],
"env": {
"ZOHO_CLIENT_ID": "your-client-id",
"ZOHO_CLIENT_SECRET": "your-client-secret",
"ZOHO_REFRESH_TOKEN": "your-refresh-token"
}
}
}
}If your account is outside the US data center, also add
"ZOHO_DATA_CENTER": "eu" (or in, com.au, jp, ca, sa) to the
env block.
5. Restart Claude Desktop
Notes
Credentials are read from environment variables at runtime and never written to disk by this server. Don't commit a
.envfile or your refresh token to this repo.The refresh token doesn't expire on its own, but you can revoke it anytime from the API Console if you need to cut off access.
Built against the official
@modelcontextprotocol/sdk, using nativefetchfor the Zoho REST calls (no Zoho SDK exists for this).
License
MIT, see LICENSE.
This server cannot be installed
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
- FlicenseAqualityDmaintenanceAn MCP server that enables Claude to directly access and manage email through IMAP. It provides tools for reading, searching, organizing, and drafting emails within your mailbox.9
- AlicenseAqualityCmaintenanceMCP server for Zoho Mail — read, search, and send email via Claude. Supports listing inbox, searching by keyword or sender, reading full message bodies, and sending HTML email.41MIT
- Alicense-qualityCmaintenanceA secure MCP server that enables Claude to read, search, send, reply, forward, and manage Gmail messages and labels through natural language commands.1921MIT
- Alicense-qualityBmaintenanceA read-only MCP server that gives Claude unified access to multiple Gmail and Microsoft 365 accounts, enabling email search, reading, and listing through one connection.180MIT
Related MCP Connectors
Read, search, send, organize, draft and schedule email across your inboxes from any MCP client.
Hosted email MCP for AI agents with inboxes, send/receive, memory, recovery, and credits.
Shipmail MCP server for AI agent custom-domain email inboxes with REST API and webhooks.
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/JessicaTemplet/zoho-mail-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server