Validates email addresses through a remote Cloudflare Workers API, exposing four MCP tools: single validation, batch validation (up to 100 emails), domain checks, and typo suggestions. Each validation returns syntax compliance (RFC 5322), MX record status, disposable/role-based detection, SPF/DKIM checks, and a 0-100 risk score. Reach for this when you need Claude to verify user input, clean email lists, or catch common typos like "gmial.com" before sending. The server runs on streamable-http transport at api.lazy-mac.com. Part of the lazymac ecosystem that bundles 42+ developer tools, though this standalone server focuses purely on email validation workflows.

⭐ Building in public from $0 MRR. Star if you want to follow the journey — lazymac-mcp (42 tools, one MCP install) · lazymac-k-mcp (Korean wedge) · lazymac-sdk (TS client) · api.lazy-mac.com · Pro $29/mo.
🚀 Want all 42 lazymac tools through ONE MCP install?
npx -y @lazymac/mcp· Pro $29/mo for unlimited calls.
Comprehensive email validation API — syntax (RFC 5322), MX record lookup, disposable domain detection, role-based detection, SPF/DKIM checks, typo suggestions, and risk scoring (0-100). REST + MCP server.
npm install && npm start # http://localhost:3100
curl -X POST http://localhost:3100/validate \
-H "Content-Type: application/json" \
-d '{"email": "user@gmail.com"}'
# → {email, syntax, role, disposable, mx, domain, spf, dkim, typo, risk, deliverable}
curl -X POST http://localhost:3100/validate/batch \
-H "Content-Type: application/json" \
-d '{"emails": ["a@gmail.com", "b@fake.xyz"]}'
# → {total, valid, invalid, results}
curl -X POST http://localhost:3100/domain \
-H "Content-Type: application/json" \
-d '{"domain": "gmail.com"}'
# → {domain, exists, mx, spf, dkim, is_disposable, is_free_provider, reputation_score}
curl -X POST http://localhost:3100/suggest \
-H "Content-Type: application/json" \
-d '{"email": "user@gmial.com"}'
# → {original, has_suggestion, suggested: "user@gmail.com", reason}
curl -X POST http://localhost:3100/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
MCP Tools: validate_email, validate_batch, check_domain, suggest_fix
MIT
💡 Host your own stack? Get $200 DigitalOcean credit via lazymac referral link.
silenceper/mcp-k8s
azure/containerization-assist
io.github.evozim/aws-builder
reza-gholizade/k8s-mcp-server
flux159/mcp-server-kubernetes