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

encrata-mcp

v2.4.1

Published

Encrata MCP Server — Email intelligence, OSINT, domain/company research, Google dorking, dark web search, IP lookup, monitoring, and contact lists for AI agents.

Readme

Website · Docs · Get API Key


What it does

Encrata gives your AI agent real-time email intelligence, IP intelligence, monitoring, and contact list management through these tools:

| Tool | Description | Cost | |------|-------------|------| | lookup_email | Full person enrichment — name, company, role, industry, location, education, social profiles, breach history, registered services, news mentions | 1 credit | | validate_email | Check if an email is deliverable, invalid, or disposable | Free | | check_breaches | Check if an email has been exposed in data breaches | Free | | ip_lookup | IP intelligence — geolocation, ISP/ASN, security flags (VPN, proxy, Tor), company info | Free | | list_monitors | List all email monitors | Free | | create_monitor | Create a new monitor to track email changes over time | Free | | get_monitor | Get details of a specific monitor | Free | | trigger_monitor_run | Trigger an immediate enrichment run | 1 credit/email | | list_runs | List monitoring runs for a monitor or all monitors | Free | | get_run_results | Get enrichment results and detected changes for a run | Free | | list_contact_lists | List all contact lists | Free | | create_contact_list | Create a reusable email list | Free | | get_contact_list | Get details of a specific contact list | Free | | delete_contact_list | Delete a contact list permanently | Free | | list_contact_list_emails | List all emails in a contact list | Free | | add_emails_to_list | Add emails to a contact list | Free | | remove_emails_from_list | Remove emails from a contact list | Free | | list_bulk_jobs | List async bulk enrichment jobs | Free | | get_bulk_job | Get status and download URL of a bulk job | Free | | cancel_bulk_job | Cancel a pending/in-progress bulk job | Free |

Quick Start

1. Get an API key

Sign up at encrata.com and create an API key in Settings → API Keys.

2. Install

npm install -g encrata-mcp

3. Connect to your AI tool

Pick your tool below and add the config:


Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "encrata": {
      "command": "npx",
      "args": ["-y", "encrata-mcp"],
      "env": {
        "ENCRATA_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

claude mcp add encrata -- npx -y encrata-mcp

# Set your API key
export ENCRATA_API_KEY="your-api-key"

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "encrata": {
      "command": "npx",
      "args": ["-y", "encrata-mcp"],
      "env": {
        "ENCRATA_API_KEY": "your-api-key"
      }
    }
  }
}

VS Code / GitHub Copilot

Add to .vscode/mcp.json in your project root:

{
  "servers": {
    "encrata": {
      "command": "npx",
      "args": ["-y", "encrata-mcp"],
      "env": {
        "ENCRATA_API_KEY": "your-api-key"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "encrata": {
      "command": "npx",
      "args": ["-y", "encrata-mcp"],
      "env": {
        "ENCRATA_API_KEY": "your-api-key"
      }
    }
  }
}

ChatGPT

ChatGPT supports MCP servers via the ChatGPT desktop app. Go to Settings → MCP Servers → Add and configure:

  • Name: Encrata
  • Command: npx -y encrata-mcp
  • Environment: ENCRATA_API_KEY=your-api-key

Example Prompts

Once connected, try asking your AI:

Example Output

> Look up [email protected]

Name: Venkat
Email: [email protected]
Company: Unosend
Industry: Information Technology & Services
Validity: valid
LinkedIn: https://in.linkedin.com/in/venkatofl
Twitter: https://x.com/venkatofl

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | ENCRATA_API_KEY | Yes | — | Your Encrata API key | | ENCRATA_BASE_URL | No | https://encrata.com | API base URL (for self-hosted) |

How It Works

AI Agent (Claude/ChatGPT/Cursor/...)
  ↕ stdio (MCP protocol)
Encrata MCP Server (this package)
  ↕ HTTPS (JSON-RPC 2.0)
Encrata API (encrata.com/mcp)
  ↕ parallel enrichment
10+ data sources

The MCP server runs locally on your machine as a stdio process. It bridges your AI agent to the Encrata API using the Model Context Protocol. All enrichment happens server-side — no data sources or credentials needed locally.

Pricing

  • lookup_email: 1 credit per fresh lookup (cached results within 24h are free)
  • validate_email: Free
  • check_breaches: Free
  • ip_lookup: Free
  • Monitor runs: 1 credit per email in the monitor
  • All other tools (list, create, delete, manage): Free

Sign up at encrata.com to get free credits.

Links

License

MIT