email-intelligence-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@email-intelligence-mcpVerify the email address support@company.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
InboxValid MCP Prototype
A lightweight, MCP-compatible email intelligence server inspired by InboxValid's real-time verification workflow. It exposes three discoverable tools that an AI agent or LLM client can call as structured functions:
Tool | Layer | Purpose |
| Validation | Real-time single-address verification (syntax, disposable, MX). |
| Hygiene | Bulk dedupe + verification with summary statistics. |
| Intelligence | Onboarding / fraud decision built on the verification signals. |
All three share a single validation engine (verify_email) — the hygiene and risk tools reuse it
rather than re-implementing checks.
verify_email() <- core validation engine
^ ^
┌───────────┘ └───────────┐
clean_email_list() assess_signup_risk()Features
Email syntax validation (normalize + regex)
Disposable / throwaway domain detection
Real DNS MX lookup via
dnspython(with timeout + graceful failure)Structured, risk-oriented responses (
status,reason,risk_score,checks)MCP tool exposure so agents can discover and invoke verification as a typed tool
Single-email verification —
verify_emailBulk list cleaning + dedupe —
clean_email_listSignup risk scoring + decision —
assess_signup_risk
Related MCP server: email-validator-api
Project layout
tvaram_mcp/
├── server.py # MCP server; registers the three tools
├── verifier.py # core engine: verify_email + clean_email_list
├── disposable_domains.py # curated disposable-domain set
├── risk_engine.py # assess_signup_risk heuristics
├── demo.py # runs all three tools and prints results
├── test_verifier.py # unit tests (DNS mocked; runs offline)
├── requirements.txt
└── screenshots/ # demo captures (see "Demo" below)Running locally
Requires Python 3.11+.
pip install -r requirements.txt
python server.py # starts the MCP server over stdioTo see all three tools run without an MCP client (quickest way to review output):
python demo.pyTo explore the tools interactively in the MCP Inspector:
mcp dev server.pyTests
python -m unittest # or: python -m pytestTests mock the DNS lookup, so they run offline and cover the deterministic logic (syntax, disposable detection, normalization, dedupe, and risk scoring).
Using it from an MCP client (e.g. Claude Desktop)
Add an entry to the client's MCP config (claude_desktop_config.json), pointing at this folder:
{
"mcpServers": {
"inboxvalid": {
"command": "python",
"args": ["D:/assignments/context/tvaram_mcp/server.py"]
}
}
}Restart the client and the three tools appear in tool discovery.
Example invocations
verify_email("founder@gmail.com")
{
"email": "founder@gmail.com",
"status": "valid",
"reason": "mx_record_found",
"risk_score": 0.08,
"checks": { "syntax": true, "disposable": false, "mx": true }
}clean_email_list(["founder@gmail.com", "admin@tempmail.com", "bad-email", "founder@gmail.com"])
{
"summary": { "total": 4, "valid": 1, "risky": 1, "invalid": 1, "duplicates_removed": 1 },
"cleaned_list": ["founder@gmail.com"],
"rejected": [
{ "email": "admin@tempmail.com", "reason": "disposable_domain" },
{ "email": "bad-email", "reason": "invalid_syntax" }
]
}assess_signup_risk("admin@tempmail.com")
{
"email": "admin@tempmail.com",
"decision": "manual_review",
"risk_score": 0.7,
"signals": {
"valid_syntax": true,
"disposable_domain": true,
"role_based_local_part": true,
"suspicious_local_part": false,
"mx_present": false
},
"recommendation": "Allow signup but flag for manual review or require email verification before activating the account."
}Design decisions
invalidvsriskyvsvalid. Email verification is probabilistic, so status is three-way. Bad syntax isinvalid— it can never be a real address. A disposable domain or a missing MX record isrisky— the address is well-formed and mail might still deliver, so we flag rather than reject.Syntax failures are
invalid. A malformed string is a hard, deterministic reject; no network call needed.Disposable domains are
risky. They are syntactically valid burner addresses — low trust, but not impossible — so they warrant a flag, not a hard rejection.MX lookup is real, and short-circuited. We perform an actual DNS MX query (the strongest cheap signal that a domain can receive mail) with a 5-second timeout; any DNS failure is treated as "no deliverable server." The pipeline stops at the first failing check so
reasonalways names the real problem.Bulk cleaning reuses the core engine.
clean_email_listdedupes on the normalized address and callsverify_emailper unique address — no duplicated validation logic.Signup risk is intentionally heuristic.
assess_signup_risklayers simple, additive, deterministic weights (role-based, suspicious pattern, disposable, missing MX) on top of the verification signals and maps the score to a decision. It is explainable by design, not a black-box model.SMTP mailbox verification is intentionally omitted. Live SMTP probing (RCPT TO) is slow, frequently blocked/greylisted, and can harm sender reputation — a poor fit for a fast, safe tool. MX + heuristics give most of the signal without those costs.
Error handling & retry/backoff thinking
DNS is the only external dependency.
verify_emailnever raises on DNS problems:NXDOMAIN,NoAnswer,NoNameservers, and timeouts all resolve to a cleanmx=False/riskyoutcome, so a transient failure degrades gracefully instead of crashing the tool.The resolver uses a bounded
timeout/lifetime(5s) so a slow domain can't hang an agent.Retries are deliberately left out of this prototype to keep behaviour predictable. In production the right place for retry-with-exponential-backoff (plus jitter) is around the DNS call, paired with a short-TTL cache so repeated lookups of the same domain don't re-query. See Future Improvements.
Future improvements
Signals a production, InboxValid-scale platform would add:
SMTP mailbox existence verification (RCPT TO probing)
Catch-all domain detection
Spam-trap detection
Richer role-account and disposable-domain lists (regularly updated)
Async / batched verification for large lists
Result caching (short-TTL per domain) and retry-with-backoff on DNS
Rate limiting and per-client quotas
Demo
Screenshots of the tools running in an MCP client live in screenshots/:
tool-discovery.png— the three tools listed by the clientverify-example.png— averify_emailcall and responseclean-list-example.png— aclean_email_listcall and responsesignup-risk-example.png— anassess_signup_riskcall and response
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceAn MCP server that enables AI agents to validate email addresses and send emails via SMTP with zero external dependencies.MIT
- Flicense-qualityDmaintenanceComprehensive email validation MCP server that checks syntax, MX records, disposable domains, role-based accounts, SPF/DKIM, typo suggestions, and risk scoring.
- AlicenseAqualityBmaintenanceMCP server that enables AI agents to check if email addresses or domains are disposable using the isitdisposable.com API. It provides tools like check_email, check_domain, and check_batch for real-time validation.3297MIT
- FlicenseAqualityBmaintenanceAn MCP server that exposes a verify_email tool for checking email syntax, disposable domains, and MX records, returning a structured validity result.1
Related MCP Connectors
MCP server for Tomba email finder, verification, and contact enrichment API
Hosted email MCP for AI agents with inboxes, send/receive, memory, recovery, and credits.
Emailable MCP — wraps the Emailable email verification API (emailable.com)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/naresh-mahiya/email-intelligence-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server