A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
MailSandbox is a fast, zero-dependency email testing tool & API with a web UI, SMTP server, Postmark API emulation, and
Fork of Mailpit adding Postmark API emulation and an MCP server for AI-assisted debugging.
Inspired by and grateful to the original work on Mailpit and MailHog. See Credits.
Repository • Installation • Usage • Postmark API • MCP Server
MailSandbox is a small, fast, low-memory, zero-dependency, multi-platform email testing tool & API for developers.
It provides an SMTP server, modern web interface, REST API, Postmark API emulation, and an MCP server for AI-powered workflows.
List-Unsubscribe validationThe web UI runs on http://0.0.0.0:8025 and SMTP on 0.0.0.0:1025.
sudo sh < <(curl -sL https://raw.githubusercontent.com/btafoya/mailsandbox/main/install.sh)
Download from releases, rename to mailsandbox, and add to $PATH.
docker run -d --name mailsandbox -p 8025:8025 -p 1025:1025 btafoya/mailsandbox
List options:
mailsandbox -h
Enable Postmark API emulation:
mailsandbox --postmark-api --postmark-token "your-secret-token"
Environment variables:
export MP_POSTMARK_API=true
export MP_POSTMARK_TOKEN=your-secret-token
mailsandbox
Example: Node.js
const postmark = require("postmark");
const client = new postmark.ServerClient("your-secret-token");
client.apiUrl = "http://localhost:8025";
client.sendEmail({ From:"a@x.com", To:"b@y.com", Subject:"Test", TextBody:"Hello" });
Endpoints:
POST /emailPOST /email/batchPOST /email/withTemplateEnable MCP server:
mailsandbox --mcp-server --mcp-transport stdio
Environment variables:
export MP_MCP_SERVER=true
export MP_MCP_TRANSPORT=stdio
docker build -t mailsandbox-with-mcp .
docker run -d --name mailsandbox -p 127.0.0.1:8025:8025 -p 1025:1025 -e MP_MCP_SERVER=true -e MP_MCP_TRANSPORT=stdio -e MP_POSTMARK_API=true -e MP_POSTMARK_TOKEN=dev-token-123 mailsandbox-with-mcp
list_messages — list/filter emailsget_message — retrieve full messagesearch_messages — advanced searchanalyze_message — HTML, links, spam scoringmailsandbox; create a symlink if you prefer mailpit.8025, SMTP 1025.MailSandbox inherits the upstream license from Mailpit. See LICENSE for details.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
MCP server integration for DaVinci Resolve Studio
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba