ZeptoMail Templates MCP
Manages ZeptoMail email templates across all agents in a Zoho account, providing tools to list agents, list/search/read/create/update/delete templates, with support for read-only mode, agent allowlisting, and OAuth-based authentication.
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., "@ZeptoMail Templates MCPlist all email templates in the production agent"
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.
ZeptoMail Templates MCP
An MCP server that lets an AI agent (opencode, Claude Desktop, Cursor, ...) inspect and manage email templates across all ZeptoMail Agents in your Zoho account.
It intentionally does not send email, create/delete Agents, expose Send Mail Tokens, or manage domains. It only reads the Agent list and manages templates.
Quickstart (local, ~5 minutes)
1. Install the server
npm i -g zeptomail-mcpThis gives you a zeptomail-mcp command on your PATH. Skip this if you'd rather run from a local clone of the repo (node /path/to/zeptomail-mcp/dist/src/server.js).
2. Create a Zoho OAuth app
Open the Zoho API Console.
Create a Server-based Application:
Client name:
zeptomailmcp(no hyphens — Zoho rejects them)Homepage URL: anything, e.g.
https://github.com/P4rthPat3l/zeptomail-mcpAuthorized redirect URI:
http://localhost:4567/callback
Note the Client ID and Client Secret.
A Self Client also works. It has no redirect URI field, so instead of step 2 use its Generate Code tab (see Self Client setup below).
3. Get a refresh token
ZOHO_CLIENT_ID=<your-client-id> ZOHO_CLIENT_SECRET=<your-secret> zeptomail-mcp-loginYour browser opens Zoho's consent screen for scopes Zeptomail.MailAgents.READ + Zeptomail.MailTemplates.All. After you approve, the script prints a refresh token.
If you're running from a local clone instead of a global install, this same command is
npm run login.
4. Configure your MCP host
You can pass the Zoho credentials inline in the host config, or load them from a .env file so the config file itself stays secret-free. Both work; pick one.
Option A — load from a .env file (recommended)
Put the secrets in a .env file (gitignore it — it's a credential):
# .env
ZOHO_CLIENT_ID=<your-client-id>
ZOHO_CLIENT_SECRET=<your-secret>
ZOHO_REFRESH_TOKEN=<your-refresh-token>
ZOHO_ACCOUNTS_URL=https://accounts.zoho.comThen point the server at it with --env-file. The path is resolved relative to the host's working directory; use an absolute path if unsure.
opencode — opencode.json (or .opencode/opencode.json):
{
"mcp": {
"zeptomail": {
"type": "local",
"command": ["zeptomail-mcp", "--env-file=/absolute/path/to/.env"],
"enabled": true
}
}
}Claude Desktop — claude_desktop_config.json:
{
"mcpServers": {
"zeptomail": {
"command": "zeptomail-mcp",
"args": ["--env-file=/absolute/path/to/.env"]
}
}
}Option B — inline in the host config
opencode — opencode.json (or .opencode/opencode.json):
{
"mcp": {
"zeptomail": {
"type": "local",
"command": ["zeptomail-mcp"],
"enabled": true,
"environment": {
"ZOHO_CLIENT_ID": "...",
"ZOHO_CLIENT_SECRET": "...",
"ZOHO_REFRESH_TOKEN": "...",
"ZOHO_ACCOUNTS_URL": "https://accounts.zoho.com"
}
}
}
}Claude Desktop — claude_desktop_config.json:
{
"mcpServers": {
"zeptomail": {
"command": "zeptomail-mcp",
"env": {
"ZOHO_CLIENT_ID": "...",
"ZOHO_CLIENT_SECRET": "...",
"ZOHO_REFRESH_TOKEN": "...",
"ZOHO_ACCOUNTS_URL": "https://accounts.zoho.com"
}
}
}
}Running from a local clone instead of a global install
Run the built launcher directly with node. It parses --env-file the same way the global zeptomail-mcp command does, so the flag goes after the script:
opencode (Option A env-file):
["node", "/absolute/path/to/zeptomail-mcp/dist/src/cli.js", "--env-file=/absolute/path/to/.env"]opencode (Option B inline):
["node", "/absolute/path/to/zeptomail-mcp/dist/src/cli.js"]+ theenvironmentblockClaude Desktop:
"command": "node","args": [".../dist/src/cli.js", "--env-file=..."](or just[".../dist/src/cli.js"]with theenvblock)
5. Use it
Ask your agent to call the tools:
"list my ZeptoMail agents"
"find the template with alias
team_invite""show me the OTP template in the sandbox agent"
Related MCP server: Zoho Mail MCP Server
Self Client setup
A Self Client has no redirect URI, so zeptomail-mcp-login cannot catch its callback. Instead:
API Console → Self Client → Generate Code.
Scope:
Zeptomail.MailAgents.READ,Zeptomail.MailTemplates.All→ CREATE.Copy the generated code and exchange it:
curl -X POST https://accounts.zoho.com/oauth/v2/token \
-d "code=<generated code>" \
-d "client_id=<client id>" \
-d "client_secret=<client secret>" \
-d "grant_type=authorization_code" \
-d "redirect_uri=https://api-console.zoho.com/"The JSON response contains refresh_token.
Tools
MCP tool | Purpose | Mutates data |
| List accessible Agents and exact Agent keys/aliases | No |
| List templates in one explicit Agent | No |
| Search one Agent or all Agents by name/alias/subject | No |
| Read one complete template from one Agent | No |
| Create a template in one explicit Agent | Yes |
| Partial update with Agent + stale-write protection | Yes |
| Permanent delete with Agent/name/timestamp checks | Yes |
Write tools require both:
ZEPTOMAIL_MCP_ALLOW_WRITES=truein the server environment.confirm=truein the individual tool call.
Every write also requires the exact agentKey and expectedAgentName from a fresh zeptomail_list_agents call. Update/delete additionally require current template safety values (expectedModifiedTime, expectedTemplateName), so a stale read can never overwrite a newer edit.
Configuration reference
Variable | Required | Default | Purpose |
| yes | — | Zoho OAuth app client ID |
| yes | — | Zoho OAuth app client secret |
| yes (stdio) | — | Long-lived token; the server mints 1-hour access tokens from it |
| no |
| Zoho data center ( |
| no |
| ZeptoMail API base URL |
| no |
| Set |
| no | all agents | Comma-separated |
| no |
|
|
All variables can be provided either as process environment variables (set by the host config) or via a --env-file=<path> argument to the server (see Configure your MCP host above). Process vars take precedence; the file only fills vars that are unset.
Hosted (remote) mode with OAuth 2.0 + PKCE
For a shared/public MCP endpoint, run with ZEPTOMAIL_MCP_TRANSPORT=http. The server becomes an OAuth authorization server that proxies to Zoho as the upstream authorization server:
MCP client ⇄ this MCP server (OAuth AS + resource server) ⇄ Zoho (upstream AS) ⇄ ZeptoMail APIZEPTOMAIL_MCP_TRANSPORT=http \
ZEPTOMAIL_MCP_SERVER_URL=https://mcp.example.com \
ZEPTOMAIL_MCP_PORT=3006 \
ZEPTOMAIL_MCP_TOKEN_STORE=/var/lib/zeptomail-mcp/tokens.json \
node dist/src/server.jsClients discover metadata at
/.well-known/oauth-protected-resourceand/.well-known/oauth-authorization-server, dynamically register, and consent in the browser.The server redirects to Zoho with the client's PKCE S256 challenge and
access_type=offline, exchanges the code with the server's Zoho client secret, and stores a per-client Zoho refresh token that never leaves the server.Each user's tools operate on their own ZeptoMail account.
Host config (opencode):
{
"mcp": {
"zeptomail": {
"type": "remote",
"url": "https://mcp.example.com/mcp",
"oauth": {}
}
}
}Requirements for hosted mode: HTTPS (the SDK rejects non-HTTPS issuer URLs except localhost), the Zoho callback URI registered in the API console (https://mcp.example.com/callback), and a persistent token store. Restarting the server invalidates issued tokens — clients re-consent once.
Development
npm install
npm run typecheck
npm test
npm run buildSecurity notes
Agent discovery is read-only; there are no tools for creating Agents, generating API keys, or accessing Send Mail Tokens.
The MCP never sends email.
ZEPTOMAIL_MCP_ALLOWED_AGENT_KEYSconstrains which Agents the MCP may touch even when the OAuth account can see more.The refresh token is a long-lived credential: keep it server-side, treat it like a password, and revoke it in the Zoho console if it ever leaks.
This server cannot be installed
Maintenance
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
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to read, search, send, and reply to Zoho Mail via IMAP/SMTP using an application-specific password.1MIT
- AlicenseNot gradedqualityDmaintenanceProvides full access to Zoho Mail accounts, enabling email search, read, send, reply, thread management, folder/label operations, and more via 14 tools.MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with email accounts via IMAP and SMTP, supporting mailbox listing, email search, retrieval, sending, and management.MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to read, send, search, reply to, and delete emails directly from a Zoho Mail account.5MIT
Related MCP Connectors
Email for AI agents — send, receive as a webhook, manage domains, templates, routing.
Email for AI agents: send mail, manage contacts, automations & webhooks. Zero-DNS first send.
AI agents read & send email, manage mailboxes, domains and webhooks via the QMailing API.
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/P4rthPat3l/zeptomail-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server