npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

agentpay-email-verify-mcp

v1.2.0

Published

MCP server: Email verification with format checks, MX records, disposable detection, typo correction, and rate limiting + Pro tier

Readme

Email Verify MCP Server

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.).

Features

| 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 |

How It Works

Zero external API dependencies. Everything runs locally using:

  • Python re — RFC-compliant format validation
  • Python socket — MX record and domain resolution
  • Hardcoded disposable domain list — 200+ known disposable email providers
  • Typo detection engine — Catches common typos (gmial.com → gmail.com, hotmal.com → hotmail.com, etc.)

Response Format

{
  "email": "[email protected]",
  "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"
}

Pricing & Rate Limits

| Plan | Price | Limit | |------|-------|-------| | Free | $0 | 50 verifications per server instance | | Pro | $19/month | Unlimited verifications |

Usage

With Claude Desktop (Free Tier)

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "email-verify": {
      "command": "python",
      "args": ["path/to/email-verify-mcp/server.py"]
    }
  }
}

With Claude Desktop (Pro Tier)

{
  "mcpServers": {
    "email-verify": {
      "command": "python",
      "args": ["path/to/email-verify-mcp/server.py", "--pro-key", "PROL_AGENTPAY_DEMO"]
    }
  }
}

With Smithery

Smithery

On Smithery, configure the proKey environment variable to use Pro mode.

From Command Line

pip install -r requirements.txt

# Free tier (50 calls)
python server.py

# Pro tier (unlimited)
python server.py --pro-key PROL_AGENTPAY_DEMO

Get a Pro Key

Subscribe Now — $19/month

After purchase, you'll receive a Pro key (PROL_XXX) to unlock unlimited email verifications.

Why Email Verification?

  • Reduce bounce rates — Invalid emails damage your sender reputation
  • Save money — Don't pay for emails that will never arrive
  • Improve deliverability — ISPs reward clean lists with better inbox placement
  • Protect domain reputation — High bounce rates can get you blacklisted

Requirements

  • Python 3.8+
  • mcp>=1.0.0
  • No external APIs, no API keys, no subscriptions needed for free tier

License

MIT