npm send16-mcpstreamable-httpMITupdated 1mo ago
The email API your AI agent can actually use. A Model Context Protocol server for Send16 that gives Claude, Cursor, and any MCP client 79 tools to send transactional & marketing email, manage contacts, audiences, segments, automations, templates, the inbox, suppressions, and webhooks โ from natural language.
What can you do with send16 mcp?
send16-mcp
The email API your AI agent can actually use. A Model Context Protocol server for Send16 that gives Claude, Cursor, and any MCP client 79 tools to send transactional & marketing email, manage contacts, audiences, segments, automations, templates, the inbox, suppressions, and webhooks โ from natural language.
It ships a zero-DNS sandbox sender, so an agent can send its first real, delivered email in seconds with no domain setup.
npx send16-mcp
Quick start
You need a Send16 API key (sk_live_โฆ) from your dashboard. Then pick your client:
Claude Desktop / Claude Code
claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\):
{
"mcpServers": {
"send16": {
"command": "npx",
"args": ["-y", "send16-mcp"],
"env": { "SEND16_API_KEY": "sk_live_..." }
}
}
}
Cursor
.cursor/mcp.json:
{
"mcpServers": {
"send16": {
"command": "npx",
"args": ["-y", "send16-mcp"],
"env": { "SEND16_API_KEY": "sk_live_..." }
}
}
}
Windsurf, VS Code, and any stdio-capable MCP client work the same way โ run the send16-mcp binary with SEND16_API_KEY in the environment.
Hosted (no install)
For clients that only speak remote MCP (Claude web connectors, ChatGPT custom GPTs), point them at the hosted endpoint and authenticate with your key:
https://mcp.send16.com
One connection, your own sk_live_โฆ key โ no install, no config file.
First send in seconds โ no DNS
Most email APIs make you verify a domain before you can send anything, which blocks an unattended agent on step one. Send16's sandbox sender doesn't:
- Ask the agent to call
whoamiโ it returns your workspace and yoursandbox_recipient(your account owner's email). - Send
from: "onboarding@send16.com"to that address. It delivers with zero DNS setup. - Verify a domain later to send to anyone.
"Send a test email from onboarding@send16.com to my account email with the subject 'It works'."
What it can do
79 tools across the platform, including:
- Email โ
send_email(single/batch/scheduled/attachments), transactional templates, delivery status. - Marketing โ campaigns, broadcasts, automations, segments, subscription topics.
- Contacts โ create/search/list/import, audiences, tags, custom fields.
- Deliverability โ domains, DNS health (SPF/DKIM/DMARC), IP warming & sending capacity.
- Inbox โ read and manage transactional replies.
- Webhooks โ create/list/rotate outgoing webhook endpoints (HMAC-SHA256 signed).
Every tool also accepts an optional apiKey parameter that overrides SEND16_API_KEY, so you can switch workspaces in one session.
Environment
| Variable | Required | Description |
|---|---|---|
SEND16_API_KEY |
Yes | Your Send16 key (sk_live_โฆ) |
SEND16_API_URL |
No | API base URL (default: https://api.send16.com) |
SEND16_MCP_PORT |
No | If set, serves Streamable HTTP (multi-tenant) instead of stdio |
Self-hosting the HTTP connector
Presence of SEND16_MCP_PORT flips the server into multi-tenant HTTP mode โ each request carries its own Authorization: Bearer sk_live_โฆ, threaded through the whole request, so one process serves many users:
docker build -t send16-mcp . && docker run -p 4242:4242 send16-mcp
Develop
npm install
SEND16_API_KEY=sk_live_... npm run dev # run from source
npm run build # bundle to dist/
Links
- Site & docs: https://send16.com ยท https://send16.com/docs
- npm: https://www.npmjs.com/package/send16-mcp
- Status: https://status.send16.com
License
MIT ยฉ Spruik Co
Install
Add send16 mcp to your client. Pick the one you use.
{
"servers": {
"send16-mcp": {
"type": "http",
"url": "https://mcp.send16.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add send16-mcp -- npx -y send16-mcpcodex mcp add send16-mcp -- npx -y send16-mcpamp mcp add send16-mcp -- npx -y send16-mcp{
"mcpServers": {
"send16-mcp": {
"command": "npx",
"args": [
"-y",
"send16-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"send16-mcp": {
"command": "npx",
"args": [
"-y",
"send16-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"send16-mcp": {
"command": "npx",
"args": [
"-y",
"send16-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"send16-mcp": {
"command": "npx",
"args": [
"-y",
"send16-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"send16-mcp": {
"command": "npx",
"args": [
"-y",
"send16-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"send16-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"send16-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"send16-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"send16-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y send16-mcpRun `goose configure`, choose **Add Extension โ Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance16/25
- Trust13/20
- Capability0/15
- Install experience15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 43 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 0.5.8Latest | Jul 12, 2026 |
| 0.5.7 | Jul 11, 2026 |