techtv-mail
Allows reading and sending email for a cPanel-hosted mailbox via IMAP/SMTP, with tools to list mail folders, search emails, fetch full message content, and send email.
Click on "Deploy 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., "@techtv-mailsearch my inbox for the latest shipping confirmation"
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.
techtv-mail — a Cowork connector for pete@techtv.live
This is a small MCP server that lets Claude (Cowork) read and send email
through your cPanel-hosted pete@techtv.live mailbox — the same way it
already works with your Microsoft 365 and Gmail accounts, just built
specifically for this mailbox since Anthropic doesn't have a pre-built
connector for generic IMAP/cPanel mail.
It exposes four tools to Claude:
list_folders— see what mail folders existsearch_emails— search a folder by sender, subject, body text, or recencyget_email— fetch the full text/html of one messagesend_email— send mail as pete@techtv.live
1. Deploy it somewhere that's always on
This needs to live on a small server that's reachable over the public internet 24/7 — it can't live on your own computer or in a Claude session, since both go offline. The cheapest, simplest options for something this small:
Railway (railway.app) — free/cheap tier, deploys straight from a zip or a GitHub repo, sets
PORTfor you automatically.Render (render.com) — similar, has a free tier for small services (may sleep when idle on the free tier, which adds a few seconds' delay on the first request after a while).
A small VPS you already have, if you'd rather run it yourself.
Whichever you pick, the steps are the same shape:
Upload this folder (or push it to a GitHub repo and connect that repo).
Set it to run
npm installthennpm start(ornode server.js).Set the environment variables below in that host's dashboard — never put real credentials in the code or commit them to git.
Once deployed, the host gives you a public URL, e.g.
https://techtv-mail-production.up.railway.app.
Related MCP server: IMAP MCP Server
2. Environment variables to set on the host
Variable | Value |
|
|
|
|
|
|
|
|
| the mailbox's real password |
| a long random string — see below |
To generate a good ACCESS_TOKEN, run this on any machine with Node or
just use a password generator for something like 40+ random characters:
node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"This token becomes part of the server's URL and is the only thing standing between the public internet and your mailbox, so treat it exactly like a password — long, random, never shared, never posted anywhere public.
3. Add it to Cowork as a custom connector
Once deployed, in the Claude app:
Go to Customize > Connectors (or click "+" / type "/" in a chat and choose "Manage connectors").
Click + to browse, then Add custom connector.
For the server URL, enter:
https://<your-host-domain>/mcp/<ACCESS_TOKEN>(both pieces come from your deployment — the domain your host gave you, and the token you set as an environment variable).
Leave the OAuth Client ID/Secret fields blank — this server doesn't use OAuth, the token in the URL is the access control.
Save/Connect. Claude should now list
list_folders,search_emails,get_email, andsend_emailas available tools whenever this connector is enabled in a chat.
Security notes
The mailbox password only ever lives in the host's environment variables — it's never in this code, never typed into a chat with Claude.
Anyone who obtains the full connector URL (including the token) could use these tools against the mailbox, so don't paste that URL anywhere public (a shared doc, a public repo, a Slack channel others can see).
If you ever suspect the URL has leaked, generate a new
ACCESS_TOKEN, update it on the host, and re-enter the new URL in Cowork's connector settings — the old URL stops working immediately.This mailbox's actual password should also just live in your password manager as normal; this server needs it once, at deploy time, as an environment variable.
Local test (optional, before deploying)
You can run it locally first to make sure your real credentials work:
npm install
MAIL_HOST=mail.techtv.live IMAP_PORT=993 SMTP_PORT=465 \
EMAIL_USER=pete@techtv.live EMAIL_PASS='<real password>' \
ACCESS_TOKEN=test123 PORT=3000 node server.jsThen in another terminal:
curl -s -X POST http://localhost:3000/mcp/test123 \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}'A successful response looks like a result block naming the server —
if instead you get an authentication error, double check EMAIL_PASS and
that IMAP/SMTP access isn't blocked for this mailbox in cPanel.
This server cannot be deployed
Maintenance
Related MCP Connectors
Connect any mailbox to Claude, ChatGPT & AI: read, send, reply, schedule & search emails.
Email infrastructure for AI agents — send, receive, search, and reply to email over MCP.
Email inboxes for AI agents: send, receive, reply, search, and manage threaded email over MCP.
Read, send, file and search email in any Gmail, Microsoft 365 or IMAP mailbox, plus its calendar.
Related MCP Servers
- AlicenseAqualityAmaintenanceEnables Claude to interact with email accounts via IMAP and SMTP, providing tools for searching, reading, sending, and managing emails across multiple providers.40379 npm92MIT
- FlicenseNot gradedqualityDmaintenanceEnables Claude to read, search, send, and manage emails across multiple IMAP/SMTP accounts via a single deployment.-
- FlicenseNot gradedqualityBmaintenanceEnables Claude to read, search, draft, send, flag, and move email across multiple IMAP/SMTP mailboxes while keeping credentials local.-
- AlicenseNot gradedqualityBmaintenanceEnables secure mailbox access and email management via IMAP/SMTP, with tools for reading, searching, organizing, sending, and deleting emails, designed for local use and compatible with MCP clients like ChatGPT.1MIT