vaemail/vaemail-mcp
FreeMaintainedSend transactional email, authenticate sending domains, track delivery and diagnose deliverability. Scoped API keys, idempotent requests and dry-run. npx -y vae
About
Send transactional email, authenticate sending domains, track delivery and diagnose deliverability. Scoped API keys, idempotent requests and dry-run. npx -y vaemail mcp
README
MCP server and CLI for VaEmail. Give an agent the ability to send email, authenticate a sending domain, track delivery and diagnose deliverability — without a human reading a dashboard in between.
European infrastructure: servers in Germany, sending through Amazon SES Europe.
Install
# Claude Code
claude mcp add vaemail --env VAEMAIL_API_KEY=swm_your_key -- npx -y vaemail mcp
# Any MCP client
npx -y vaemail mcp
Or as a config block:
{
"mcpServers": {
"vaemail": {
"command": "npx",
"args": ["-y", "vaemail", "mcp"],
"env": { "VAEMAIL_API_KEY": "swm_your_key" }
}
}
}
Check everything is wired up:
npx vaemail init
Tools
| Tool | What it does |
|---|---|
vaemail_capabilities |
What the service supports. No API key needed. |
vaemail_send_email |
Queue a transactional email, return its id. |
vaemail_validate_email |
Dry run: would this send go out, and what would block it. |
vaemail_get_message |
Delivery status and every event for one message. |
vaemail_list_messages |
Recent messages, filtered by status, tag or recipient. |
vaemail_list_domains |
Sending domains with live SPF, DKIM and DMARC state. |
vaemail_create_domain |
Declare a domain, return the DNS records to publish. |
vaemail_verify_domain |
Re-read the DNS and report what is authenticated. |
vaemail_dns_requirements |
The records a declared domain still needs. |
vaemail_diagnose_deliverability |
Why mail is landing badly, with the actions that fix it. |
vaemail_list_bounces |
Addresses excluded from sending, and why. |
vaemail_get_usage |
Quota, daily cap on the key, what is left. |
vaemail_get_audit_log |
What this key has done, to report it accurately. |
What this is built to prevent
An agent fails differently from a person. It retries, it does not read a dashboard, and it reports success from a 200. The API is shaped around that:
- A send is accepted, not delivered.
vaemail_send_emailreturns 202 and an id. Onlyvaemail_get_messagesays what became of it. The tool descriptions say so, so an agent does not announce a delivery it cannot know about. - Retries do not duplicate. Pass
idempotency_keyand a repeat call replays the first response for 24 hours instead of sending twice. - Errors say what to do. Every failure carries a stable
code, whether it isretryable, and the corrective action with the endpoint that performs it. - Keys are bounded. Scopes, a daily send cap, a cap on recipients per email and an allow-list of sender domains. An agent cannot spend more than the key allows.
- Every call is logged. Which key, which operation, which parameters, which result — message bodies excluded. Autonomous, but accountable.
- Human steps are named as such. Publishing DNS records is one. A record
whose value still contains a placeholder is flagged
publishable: false, because publishing it would break the domain's authentication.
CLI
vaemail init # check config, print the MCP snippet
vaemail capabilities # what the service can do (no key needed)
vaemail send --to [email protected] --subject Hi --html '<p>Hello</p>'
vaemail status 42 # delivery status of a message
vaemail domains:add exemple.fr # declare a domain, print DNS records
vaemail doctor # why is my email not arriving?
vaemail usage # quota and remaining allowance
vaemail mcp # run the MCP server on stdio
Add --json to any command for machine-readable output.
Use it as a library
The same client the MCP server and the CLI run on is exported, so an application can call VaEmail directly. No dependencies.
import { VaEmail } from 'vaemail';
const client = new VaEmail({ apiKey: process.env.VAEMAIL_API_KEY });
await client.send(
{
to: '[email protected]',
subject: 'Your order is on its way',
html: '<p>Tracking number: 1Z999</p>',
},
'order-4711', // idempotency key: safe to replay for 24 hours
);
Errors carry what to do next, not just a status code:
try {
await client.send({ to: '[email protected]' });
} catch (error) {
error.code; // DOMAIN_NOT_VERIFIED
error.retryable; // false
error.pourAgent(); // reason, corrective action, whether to retry
}
Also: capabilities(), health(), validate(), getMessage(),
listMessages(), listDomains(), addDomain(), verifyDomain(),
dnsRecords(), diagnoseDeliverability(), listSuppressions(), usage(),
auditLogs().
A Python SDK with the same surface is available: pip install vaemail
(https://github.com/vaemail/vaemail-python).
Environment
| Variable | Meaning |
|---|---|
VAEMAIL_API_KEY |
Account API key. Created from the dashboard, under « Clés API ». |
VAEMAIL_BASE_URL |
API base URL. Defaults to https://app.vaemail.fr. |
Also available
- OpenAPI specification: https://app.vaemail.fr/openapi.json
- Capabilities endpoint: https://app.vaemail.fr/api/v1/capabilities
- Agent documentation: https://vaemail.fr/agents
Skill and examples
- Agent skill (rules an agent should follow before its first call):
npx skills add vaemail/skills, source https://github.com/vaemail/skills - Examples for curl, Node, Python, Claude Code, Codex, OpenAI Agents, LangChain, CrewAI and n8n: https://github.com/vaemail/examples
- Registry entry:
io.github.vaemail/vaemail(seeserver.json)
Dependencies
None. Node 18+ for the built-in fetch, and nothing else — a package an agent
installs on its own should not pull a dependency tree behind it.
License
MIT
Installing vaemail/vaemail-mcp
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/vaemail/vaemail-mcpFAQ
Is vaemail/vaemail-mcp MCP free?
Yes, vaemail/vaemail-mcp MCP is free — one-click install via Unyly at no cost.
Does vaemail/vaemail-mcp need an API key?
Yes, it requires environment variables: VAEMAIL_API_KEY. Unyly injects them into the config during install.
Is vaemail/vaemail-mcp hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install vaemail/vaemail-mcp in Claude Desktop, Claude Code or Cursor?
Open vaemail/vaemail-mcp on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Gmail
Read, send and search emails from Claude
by GoogleSlack
Send, search and summarize Slack messages
by SlackRunbear
No-code MCP client for team chat platforms, such as Slack, Microsoft Teams, and Discord.
Discord Server
A community discord server dedicated to MCP by [Frank Fiegel](https://github.com/punkpeye)
Klavis AI
Open Source MCP Infra. Hosted MCP servers and MCP clients on Slack and Discord.
Work90210/APIFold
Turn any REST API into a hosted MCP server. 18 free public servers (GitHub, Stripe, Slack, OpenAI, Notion, and more) — no setup required, bring your own API key
by Work90210arikusi/deepseek-mcp-server
MCP server for DeepSeek AI with chat, reasoning, multi-turn sessions, function calling, thinking mode, and cost tracking.
by arikusihashgraph-online/hashnet-mcp-js
MCP server for the Registry Broker. Discover, register, and chat with AI agents on the Hashgraph network.
by hashgraph-onlineprofullstack/mcp-server
A comprehensive MCP server aggregating 20+ tools including SEO optimization, document conversion, domain lookup, email validation, QR generation, weather data,
by profullstackWayStation-ai/mcp
Seamlessly and securely connect Claude Desktop and other MCP hosts to your favorite apps (Notion, Slack, Monday, Airtable, etc.). Takes less than 90 secs.
by waystation-aiCompare vaemail/vaemail-mcp with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All communication MCPs
