TempMail OTP MCP Server
Allows Hermes to generate temporary email addresses, list and read received emails, extract OTP codes, and extract links from 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., "@TempMail OTP MCP Servergenerate a temp email and retrieve the OTP from incoming messages"
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.
TempMail OTP — Self-Hosted Temporary Email Generator
Receive-only temp email server with automatic OTP extraction for security research, QA automation, and disposable identity workflows.
Features
SMTP catch-all — accepts all inbound email on your domain (port 25, no auth)
Real-time inbox — SSE stream pushes new emails instantly to the browser
OTP extraction — automatic detection of verification codes (4–8 digit, alphanumeric)
Link extraction — parse all URLs from plain-text and HTML email bodies
REST API — authenticated endpoints for email generation, reading, OTP, and link extraction
MCP integration — stdio-based Model Context Protocol server for AI agents (Hermes, Claude, etc.)
Docker — multi-stage build, SQLite persistence, health check included
Dark/light mode — built with Tailwind CSS + shadcn/ui
DNS verification — built-in
/api/dns-checkendpoint validates MX, SPF, DMARC recordsMulti-key support — manage API keys via the web UI or
/api/keysendpoint
Related MCP server: useblip/email
Prerequisites
Node.js 20+ (with
tsxfor MCP;npmfor package management)Domain name — configured with MX, SPF, and DMARC records
Port 25 access — required for SMTP receiving; unavailable on most home ISPs. Use a VPS (Oracle Cloud Free Tier, AWS EC2, DigitalOcean) or port forwarding if supported
Quick Start
1. Clone and install
git clone <repo-url> website-email
cd website-email
npm install2. Configure environment
cp .env.example .envEdit .env with your domain and a strong API key:
DOMAIN=mail.yourdomain.com
API_KEY=your-generated-api-keyGenerate a secure API key:
openssl rand -hex 323. Set up DNS records
Configure MX, SPF, and DMARC records for your domain. See the complete guide:
Quick verification after DNS propagates:
dig MX yourdomain.com +short
dig TXT yourdomain.com +short | grep spf
dig TXT _dmarc.yourdomain.com +short4. Start the servers
Terminal 1 — Next.js web UI + API:
npm run devTerminal 2 — SMTP server (receives mail):
npx tsx src/infrastructure/smtp/start.ts5. Open the app
http://localhost:3000Generate a temp email address, send a test email to it, and watch it appear in real-time.
Docker Deployment
1. Configure .env
Same as Quick Start — fill in DOMAIN and API_KEY.
2. Build and start
docker compose up -d3. Verify
curl http://localhost:3000/api/config
# {"success":true,"data":{"domain":"mail.yourdomain.com"}}Note: Docker Compose exposes port 3000 only (web UI + API). Run the SMTP server directly on the host for port 25:
npx tsx src/infrastructure/smtp/start.tsFor production, use a reverse proxy (nginx/Caddy) for TLS termination and run SMTP via a process manager (systemd, pm2).
Environment Variables
Variable | Required | Default | Description |
| Yes | — | Your domain for receiving email (e.g. |
| Yes | — | Secret key for API and MCP authentication |
| No |
| Port for inbound SMTP |
| No |
| Bind address for SMTP server |
| No |
| SQLite database file path |
| No |
| Public URL of the application |
REST API
All endpoints (except /api/config and /api/dns-check) require an x-api-key header. Response format: { "success": true, "data": ... } or { "success": false, "error": "..." }.
Email Addresses
Method | Endpoint | Description |
|
| List all addresses |
|
| Generate new address (optional body: |
|
| Delete an address and its emails |
Emails
Method | Endpoint | Description |
|
| Generate address (shorthand) |
|
| List emails for an address |
|
| Read a specific email |
|
| Delete a specific email |
|
| Extract OTP from email |
|
| Extract links from email |
|
| SSE stream for real-time email events |
Misc
Method | Endpoint | Description |
|
| Get server domain (no auth) |
|
| Verify DNS records (MX, SPF, DMARC) |
|
| List API keys |
|
| Create new API key |
Example: Full workflow
KEY="your-api-key"
DOMAIN="mail.example.com"
# Generate an address
curl -sH "x-api-key: $KEY" -X POST http://localhost:3000/api/emails/generate | jq
# List emails
curl -sH "x-api-key: $KEY" "http://localhost:3000/api/emails/temp-abc123@$DOMAIN" | jq
# Read email and extract OTP
curl -sH "x-api-key: $KEY" -X POST \
"http://localhost:3000/api/emails/temp-abc123@$DOMAIN/eml_xxx/otp" | jqMCP Integration
The MCP server exposes 5 tools for AI agents via stdio transport:
Tool | Description |
| Generate a new temporary email address |
| List emails for an address |
| Read a specific email by ID |
| Extract OTP/verification code from an email |
| Extract all links from an email |
Configuration and workflow documentation:
→ docs/hermes-integration.md — Hermes MCP configuration → docs/chrome-devtools-mcp.md — Browser automation with Chrome DevTools MCP → docs/workflow-examples.md — Copy-paste ready prompts
Quick test:
DOMAIN=mail.example.com API_KEY=your-key npx tsx src/infrastructure/mcp/start.tsArchitecture
┌─────────────────────────────────────────────┐
│ Internet │
│ (inbound SMTP on port 25 from any server) │
└──────────────────┬──────────────────────────┘
│
▼
┌──────────────────────────────────────────────┐
│ SMTP Server (smtp-server, port 25) │
│ - Accepts all mail for configured DOMAIN │
│ - Parses MIME with mailparser │
│ - Extracts OTP codes automatically │
│ - Stores to SQLite │
└──────────────────┬───────────────────────────┘
│
▼
┌──────────────────────────────────────────────┐
│ SQLite (better-sqlite3, WAL mode) │
│ - addresses, emails, api_keys tables │
│ - Event emitter for SSE notifications │
└────────┬──────────────────┬──────────────────┘
│ │
▼ ▼
┌─────────────────┐ ┌─────────────────────────┐
│ Next.js App │ │ MCP Server (stdio) │
│ - Web UI │ │ - 5 tools for AI agents │
│ - REST API │ │ - Direct DB access │
│ - SSE stream │ │ │
└─────────────────┘ └─────────────────────────┘Stack: Next.js 14 + TypeScript + Tailwind CSS + shadcn/ui + better-sqlite3 + smtp-server + mailparser
Additional Documentation
docs/dns-setup.md — DNS record configuration (MX, SPF, DMARC)
docs/deployment.md — Production deployment (Oracle Cloud, SSL)
docs/troubleshooting.md — Common issues and solutions
docs/hermes-integration.md — Hermes AI agent MCP configuration
docs/chrome-devtools-mcp.md — Browser automation workflows
docs/workflow-examples.md — End-to-end automation examples
License
MIT
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.
Latest Blog Posts
- 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/mifdlaldev/website-email'
If you have feedback or need assistance with the MCP directory API, please join our Discord server