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

prospector-mcp

v1.0.0

Published

B2B email finder and verification MCP server. Find, verify, and enrich business email addresses without paid API subscriptions. Self-contained DNS/SMTP verification.

Readme

Prospector MCP

B2B email finder and verification — no paid API subscriptions required.

Prospector is a Model Context Protocol (MCP) server that finds and verifies business email addresses. Unlike Hunter.io, Apollo.io, or Lusha, Prospector does its own DNS/SMTP verification and web scraping. Zero external API costs.

Why Prospector?

| Feature | Prospector | Hunter.io MCP | Apollo.io MCP | Lusha MCP | |---------|-----------|---------------|---------------|-----------| | Self-contained verification | Yes | No (API wrapper) | No (API wrapper) | No (API wrapper) | | External subscription required | No | $49-399/mo | $49-119/mo | Credits-based | | Email finding | Yes | Yes | Yes | Bulk lookup only | | SMTP verification | Yes | Via API | Via API | Via API | | Catch-all detection | Yes | Via API | No | No | | Website scraping | Yes | No | No | No | | Pattern generation | Yes | Yes | No | No | | Free tier | 50/day | 25/mo | Limited | Limited | | Tools | 6 | 2 | 9-27 | 2 | | Open source | Yes | Archived | Community forks | Minimal |

Quick Start

With Claude Code

claude mcp add prospector -- npx prospector-mcp

With Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "prospector": {
      "command": "npx",
      "args": ["prospector-mcp"]
    }
  }
}

With Cursor / Windsurf

Add to your MCP settings:

{
  "prospector": {
    "command": "npx",
    "args": ["prospector-mcp"]
  }
}

Tools

verify_email

Verify if an email address is valid and deliverable. Performs DNS MX lookup, SMTP handshake (without sending email), catch-all detection, and disposable domain filtering. Returns a confidence score (0-100).

Input:  { "email": "[email protected]" }
Output: { "email": "[email protected]", "status": "valid", "score": 95, "mx_host": "aspmx.l.google.com", ... }

verify_emails_batch

Verify up to 25 emails in a single request. Efficient for cleaning outreach lists.

Input:  { "emails": ["[email protected]", "[email protected]"] }
Output: { "summary": { "total": 2, "valid": 1, "invalid": 1 }, "results": [...] }

find_emails

Find email addresses for a business. Scrapes their website for contact info, generates pattern-based candidates from a contact name, and SMTP-verifies everything it finds. This is your Hunter.io replacement.

Input:  { "domain": "acmecorp.com", "contact_name": "Jane Smith" }
Output: { "best_email": "[email protected]", "confidence": 95, "results": [...] }

check_domain

Quick check if a domain can receive email. Returns MX records and catch-all status. Does not count against your verification quota.

Input:  { "domain": "acmecorp.com" }
Output: { "can_receive_email": true, "mx_host": "aspmx.l.google.com", "catch_all": false }

usage_stats

Check your current daily usage quota and remaining verifications.

How It Works

  1. DNS MX Lookup — Checks if the domain has mail exchange records
  2. SMTP Handshake — Connects to the mail server and sends RCPT TO: to check if the mailbox exists (no email is sent)
  3. Catch-All Detection — Tests a random address to detect domains that accept all emails
  4. Web Scraping — Fetches the business website and contact pages, extracts email addresses and mailto: links
  5. Pattern Generation — Generates common email patterns (first.last@, flast@, etc.) from a contact name
  6. Confidence Scoring — Combines all signals into a 0-100 score

Pricing

Prospector uses a simple daily quota system:

| Tier | Verifications/Day | Price | |------|-------------------|-------| | Free | 50 | $0 | | Pro | 500 | $12/mo | | Business | 2,000 | $29/mo |

Set your tier via environment variable:

PROSPECTOR_TIER=pro npx prospector-mcp

HTTP Server (Remote Deployment)

For remote deployment, Prospector includes an HTTP/SSE transport:

node src/http-server.js
# or
PROSPECTOR_PORT=8080 node src/http-server.js

Endpoints:

  • POST /mcp — MCP Streamable HTTP endpoint
  • GET /health — Health check with usage stats

Requirements

  • Node.js 18+
  • Network access to port 25 (SMTP) for email verification

Note: Some hosting providers and corporate networks block outbound port 25. If SMTP verification returns "unknown" for all emails, check your network's firewall rules.

License

MIT