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

@enrichlayer/mcp-server

v0.2.0

Published

MCP server for Enrich Layer API — 25 tools for company, person, contact, school, job, and search enrichment

Readme

Enrich Layer MCP Server

An MCP (Model Context Protocol) server that provides 25 tools for enriching company, person, contact, school, and job data via the Enrich Layer API.

Use it with any MCP-compatible client: Claude Desktop, Claude Code, Cursor, VS Code, and more.

Quick Start

npx -y @enrichlayer/mcp-server

Set your API key as an environment variable:

export ENRICH_LAYER_API_KEY=your_api_key_here

Get your API key at enrichlayer.com/dashboard.

Configuration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "enrich-layer": {
      "command": "npx",
      "args": ["-y", "@enrichlayer/mcp-server"],
      "env": {
        "ENRICH_LAYER_API_KEY": "your_api_key_here"
      }
    }
  }
}

Claude Desktop (MCPB Extension)

Download the .mcpb file from Releases and open it in Claude Desktop. You'll be prompted to enter your API key during setup.

Claude Code

claude mcp add enrich-layer -- npx -y @enrichlayer/mcp-server

Then set the env var ENRICH_LAYER_API_KEY in your shell.

Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "enrich-layer": {
      "command": "npx",
      "args": ["-y", "@enrichlayer/mcp-server"],
      "env": {
        "ENRICH_LAYER_API_KEY": "your_api_key_here"
      }
    }
  }
}

VS Code

Add to your VS Code MCP settings (.vscode/mcp.json):

{
  "servers": {
    "enrich-layer": {
      "command": "npx",
      "args": ["-y", "@enrichlayer/mcp-server"],
      "env": {
        "ENRICH_LAYER_API_KEY": "your_api_key_here"
      }
    }
  }
}

Remote HTTP Server

For remote deployments, the server also supports Streamable HTTP transport:

npm run start:http

This starts an Express server on port 3000 (configurable via PORT env var) with a /mcp endpoint for JSON-RPC and a /health endpoint for health checks.

Usage Examples

1. Look up a company

"Look up the company profile for Stripe"

This calls enrich_company_lookup with company_name: "Stripe" to find the company's professional network URL and profile data.

2. Find a work email by role

"Find the work email for the CTO of Notion"

This chains two tools: first enrich_role_lookup with company_name: "Notion", role: "cto" to find the person, then enrich_work_email with their profile URL to get the email address.

3. Check your credit balance

"How many credits do I have left?"

This calls enrich_credit_balance to show your remaining API credits. Costs 0 credits.

Available Tools (25)

Company (7 tools)

| Tool | Description | Credits | |------|-------------|---------| | enrich_company_profile | Get structured company data from URL | 1 | | enrich_company_lookup | Look up company by name or domain | 2 | | enrich_company_id_lookup | Look up company by numeric ID | 0 | | enrich_company_picture | Get company profile picture URL | 0 | | enrich_employee_list | List employees of a company | 3/employee | | enrich_employee_count | Get employee count | 1 | | enrich_employee_search | Search employees by keyword | 10 |

Person (4 tools)

| Tool | Description | Credits | |------|-------------|---------| | enrich_person_profile | Get structured person data from URL | 1 | | enrich_person_lookup | Look up person by name + company | 2 | | enrich_person_picture | Get person profile picture URL | 0 | | enrich_role_lookup | Find person by role at company | 3 |

Contact (6 tools)

| Tool | Description | Credits | |------|-------------|---------| | enrich_reverse_email | Find profile by email | 3 | | enrich_reverse_phone | Find profile by phone number | 3 | | enrich_work_email | Get work email from profile | 3 | | enrich_personal_contact | Get personal phone numbers | 1/contact | | enrich_personal_email | Get personal email addresses | 1/email | | enrich_disposable_email | Check if email is disposable | 0 |

School (2 tools)

| Tool | Description | Credits | |------|-------------|---------| | enrich_school_profile | Get structured school data | 1 | | enrich_student_list | List students of a school | 3/student |

Job (3 tools)

| Tool | Description | Credits | |------|-------------|---------| | enrich_job_profile | Get structured job posting data | 2 | | enrich_job_search | Search job postings | 2 | | enrich_job_count | Count matching job postings | 2 |

Search (2 tools)

| Tool | Description | Credits | |------|-------------|---------| | enrich_company_search | Search companies by criteria | 3/URL | | enrich_person_search | Search people by criteria | 3/URL |

Meta (1 tool)

| Tool | Description | Credits | |------|-------------|---------| | enrich_credit_balance | Check your credit balance | 0 |

Privacy Policy

Enrich Layer collects only the data you explicitly pass as tool parameters (URLs, names, emails). No conversation data, chat history, or personal data is collected or stored. All requests go directly to the Enrich Layer API over HTTPS.

For the full privacy policy, see enrichlayer.com/privacy.

Development

# Install dependencies
npm install

# Build
npm run build

# Run stdio server (for MCP clients)
npm start

# Run HTTP server (for remote deployments)
npm run start:http

# Test with MCP Inspector
npx @modelcontextprotocol/inspector node build/index.js

License

MIT