Validate emails without sending a single message. Reduce bounce rates, protect sender reputation, and clean your mailing lists — all from your MCP-compatible client (Claude Desktop, Cursor, VS Code + Continue, etc.).
| Tool | Description |
|---|---|
verify_email |
Full email validation: format check, MX record lookup, disposable email detection, typo suggestion, deliverability score |
verify_email_batch |
Batch verify multiple emails in a single call |
is_disposable_email |
Check if a domain is a known disposable/temporary email provider |
Zero external API dependencies. Everything runs locally using:
re — RFC-compliant format validationsocket — MX record and domain resolution{
"email": "test@example.com",
"valid_format": true,
"has_mx_record": true,
"is_disposable": false,
"typo_suggestion": null,
"score": 0.95,
"details": "Email has valid format, MX records found, not a disposable provider"
}
Add to your claude_desktop_config.json:
{
"mcpServers": {
"email-verify": {
"command": "python",
"args": ["path/to/email-verify-mcp/server.py"]
}
}
}
pip install -r requirements.txt
python server.py
| Plan | Price | Includes |
|---|---|---|
| Starter | $19/month | 5,000 verifications/month, email support |
| Professional | $49/month | 25,000 verifications/month, priority support |
| Enterprise | Custom | Unlimited verifications, SLA, dedicated support |
This is a proven business model generating $400+/month (see: IPWhois.io, VAT-Sense, TinyScreenshot).
mcp>=1.0.0MIT