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

prospect-mcp

v0.1.0

Published

MCP server for lead enrichment and sales signals - powered by EnrichLayer and Apify

Readme

Prospect MCP

MCP server for lead enrichment and sales signals. Powered by EnrichLayer for enrichment, Apify for signals.

What It Does

| Capability | Description | |------------|-------------| | Person Enrichment | Full profiles from email, LinkedIn URL, or username | | Company Intelligence | Firmographics, employees, job listings | | Sales Signals | Job changes, funding, hiring, news (via Apify) | | Email Tools | Find and verify email addresses |

Tools (14 total)

Person

| Tool | Description | |------|-------------| | person_enrich | Enrich from email/URL/username (auto-detected) | | person_enrich_many | Batch person enrichment | | person_email_find | Find email from name + domain |

Company

| Tool | Description | |------|-------------| | company_enrich | Firmographics from domain or name | | company_employees_find | Find people at a company | | company_tech_stack | Detect technologies (requires Apify) |

Signals

| Tool | Description | |------|-------------| | signal_job_changes | People who recently changed roles | | signal_funding | Companies that raised funding | | signal_hiring | Companies hiring for specific roles | | signal_news | Recent company news | | signal_tech_adoption | Companies adopting specific tech |

Email

| Tool | Description | |------|-------------| | email_verify | Check if email is deliverable | | email_verify_many | Batch email verification |

Admin

| Tool | Description | |------|-------------| | admin_credits | Check usage and credits |

Setup

1. Get API Keys

  • ENRICHLAYER_API_KEY (required) - EnrichLayer
  • APIFY_API_KEY (optional) - Apify for signals

2. Add to MCP Config

{
  "mcpServers": {
    "prospect": {
      "command": "npx",
      "args": ["-y", "prospect-mcp"],
      "env": {
        "ENRICHLAYER_API_KEY": "your-enrichlayer-key",
        "APIFY_API_KEY": "your-apify-key"
      }
    }
  }
}

Auto-Detection

The person_enrich tool automatically detects identifier type:

| Input | Detection | |-------|-----------| | [email protected] | Email → /profile/resolve/email | | https://linkedin.com/in/johndoe | LinkedIn URL → /profile | | https://twitter.com/johndoe | Twitter URL | | https://github.com/johndoe | GitHub URL | | johndoe | LinkedIn username (assumed) |

Example Usage

"Enrich [email protected]"
→ person_enrich { identifier: "[email protected]" }

"Find the VP of Sales at stripe.com"
→ company_employees_find { domain: "stripe.com", title: "VP Sales" }

"Find email for John Doe at acme.com"
→ person_email_find { firstName: "John", lastName: "Doe", domain: "acme.com" }

"Show me companies hiring ML engineers"
→ signal_hiring { roles: ["ML Engineer", "Machine Learning"] }

"Check my remaining credits"
→ admin_credits {}

EnrichLayer API

This MCP wraps the EnrichLayer API:

| Endpoint | Tool | |----------|------| | /profile | person_enrich (LinkedIn) | | /profile/resolve/email | person_enrich (email) | | /profile/email | person_email_find | | /company | company_enrich | | /company/employees | company_employees_find | | /company/job | signal_hiring | | /disposable-email | email_verify | | /credit-balance | admin_credits |

Development

# Install
npm install

# Build
npm run build

# Test
npm test

# Run locally
ENRICHLAYER_API_KEY=xxx npm start

Configuration

| Variable | Required | Description | |----------|----------|-------------| | ENRICHLAYER_API_KEY | Yes | EnrichLayer API key | | ENRICHLAYER_API_URL | No | Custom API endpoint | | APIFY_API_KEY | No | Apify key for signals |

License

MIT