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

leads-mcp

v1.0.1

Published

Lead generation MCP server — find emails, verify contacts, enrich profiles, and search prospects via Hunter.io, Apollo.io, and Abstract API

Downloads

30

Readme

leads-mcp

Lead generation MCP server for AI agents. Find emails, verify contacts, enrich profiles, and search prospects using Hunter.io, Apollo.io, and Abstract API.

BYOK (Bring Your Own Keys) — you supply your own API keys. No data leaves your machine except direct API calls to the services you configure.

Install

npx -y leads-mcp

Claude Code

claude mcp add leads-mcp -- npx -y leads-mcp

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "leads-mcp": {
      "command": "npx",
      "args": ["-y", "leads-mcp"],
      "env": {
        "HUNTER_API_KEY": "your-hunter-key",
        "APOLLO_API_KEY": "your-apollo-key",
        "ABSTRACT_API_KEY": "your-abstract-key"
      }
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json with the same config format as above.

API Keys

All keys are optional — tools gracefully tell you which key is needed when you try to use them.

| Key | Service | Get it at | |-----|---------|-----------| | HUNTER_API_KEY | Hunter.io — email finding & verification | https://hunter.io/api-keys | | APOLLO_API_KEY | Apollo.io — person/company enrichment & search | https://app.apollo.io/#/settings/integrations/api | | ABSTRACT_API_KEY | Abstract API — company enrichment | https://app.abstractapi.com/api/company-enrichment |

Tools

find-email

Find someone's email address given their name and company domain.

Params: firstName, lastName, domain API: Hunter.io | Key: HUNTER_API_KEY

verify-email

Verify an email address for deliverability — MX records, SMTP, disposable, catch-all.

Params: email API: Hunter.io | Key: HUNTER_API_KEY

domain-search

Find all email addresses associated with a company domain.

Params: domain, type?, department?, seniority?, limit? API: Hunter.io | Key: HUNTER_API_KEY

enrich-person

Get a full professional profile — title, company, social links, phone.

Params: firstName?, lastName?, email?, domain?, linkedinUrl? API: Apollo.io | Key: APOLLO_API_KEY

enrich-company

Get comprehensive company intelligence — industry, size, funding, tech stack.

Params: domain API: Apollo.io + Abstract API | Key: APOLLO_API_KEY or ABSTRACT_API_KEY

search-people

Search for people by job title, company, location, and seniority.

Params: personTitles?, organizationName?, locations?, seniorities?, limit? API: Apollo.io | Key: APOLLO_API_KEY

search-companies

Search for companies by name, industry, location, and employee count.

Params: query?, industries?, locations?, employeeRanges?, limit? API: Apollo.io | Key: APOLLO_API_KEY

lead-report

Generate a comprehensive lead report combining all available APIs. Uses Promise.allSettled for partial results.

Params: firstName, lastName, domain API: All available | Key: Any configured key

Example Prompts

  • "Find the email for John Smith at stripe.com"
  • "Verify if [email protected] is deliverable"
  • "Find all engineering contacts at openai.com"
  • "Get the full profile for the CEO of anthropic.com"
  • "Tell me everything about acme.com"
  • "Search for CTOs at startups in San Francisco"
  • "Find B2B SaaS companies with 50-200 employees"
  • "Generate a full lead report for Jane Doe at tesla.com"

Development

git clone <repo-url>
cd leads-mcp
pnpm install
pnpm dev        # Run with tsx (hot reload)
pnpm build      # Compile TypeScript
pnpm start      # Run compiled JS

License

MIT