The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Vaemail listing page.
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.
Or as a config block:
Check everything is wired up:
| 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. |
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:
vaemail_send_email returns 202 and an
id. Only vaemail_get_message says what became of it. The tool descriptions
say so, so an agent does not announce a delivery it cannot know about.idempotency_key and a repeat call replays
the first response for 24 hours instead of sending twice.code, whether it is
retryable, and the corrective action with the endpoint that performs it.publishable: false,
because publishing it would break the domain's authentication.Add --json to any command for machine-readable output.
The same client the MCP server and the CLI run on is exported, so an application can call VaEmail directly. No dependencies.
Errors carry what to do next, not just a status code:
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).
| 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. |
npx skills add vaemail/skills, source https://github.com/vaemail/skillsio.github.vaemail/vaemail (see server.json)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.
MIT