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

findymail-mcp

v0.1.11

Published

MCP server for Findymail - Find verified B2B emails, phone numbers, and company data

Downloads

1,212

Readme

Findymail MCP Server

MCP (Model Context Protocol) server for Findymail - enabling AI assistants to find verified B2B emails, phone numbers, and company data.

Features

This MCP server exposes the following tools:

| Tool | Description | |------|-------------| | find_email | Find verified B2B email from name + domain or LinkedIn URL | | find_phone | Find phone number(s) from LinkedIn URL | | verify_email | Verify if an email is deliverable | | enrich_company | Get company data from domain, LinkedIn URL, or name | | reverse_email_lookup | Find person info from an email | | generate_lead_list | AI-powered lead list generation with natural language |

Prerequisites

Installation

npm install -g findymail-mcp

Or use directly with npx:

npx findymail-mcp

Configuration

Stdio mode (local)

Each user provides their API key via environment variable.

Claude Code

claude mcp add findymail -e FINDYMAIL_API_KEY=your-api-key -- npx findymail-mcp

Or manually edit ~/.claude.json:

{
  "mcpServers": {
    "findymail": {
      "command": "npx",
      "args": ["findymail-mcp"],
      "env": {
        "FINDYMAIL_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Desktop

Edit your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "findymail": {
      "command": "npx",
      "args": ["findymail-mcp"],
      "env": {
        "FINDYMAIL_API_KEY": "your-api-key"
      }
    }
  }
}

HTTP mode (remote server)

In HTTP mode, each client passes their Findymail API key via the Authorization header. No environment variable is needed on the server.

Claude Code

claude mcp add findymail https://your-server.com/mcp -t http -H "Authorization: Bearer your-api-key"
claude mcp add findymail https://mcp.findylabs.com/mcp -t http -H "Authorization: Bearer your-api-key"

Running the HTTP server

npm install express
PORT=3456 node src/http.js

Requests to /mcp without a valid Authorization: Bearer <token> header will be rejected with a 401 error.

Usage Examples

Once configured, you can ask your AI assistant:

  • "Find the email for John Smith at Acme Corp"
  • "What's the phone number for the CEO of findymail.com?"
  • "Verify if [email protected] is a valid email"
  • "Get company information for stripe.com"
  • "Find me 10 marketing managers at SaaS companies in San Francisco"

API Key

Get your API key from Findymail Settings.

Each API call consumes credits from your Findymail account.

Development

# Clone the repo
git clone https://github.com/Findymail/findymail-mcp.git
cd findymail-mcp

# Install dependencies
npm install

# Run locally
FINDYMAIL_API_KEY=your-key npm start

License

MIT