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

@localleads/mcp

v0.2.0

Published

Stdio MCP server for LocalLeads — let Claude Desktop, Cursor, and other local MCP clients search business leads, enrich contacts, and check credits via the LocalLeads API. For Claude.ai use the remote MCP connector at https://leadsapi.postorbit.io/mcp ins

Readme

@localleads/mcp

Stdio Model Context Protocol server for LocalLeads. Connects Claude Desktop, Cursor, VS Code, and other local MCP clients to the LocalLeads REST API so the model can search Google Maps for businesses, enrich contacts, and check your credit balance without leaving the chat.

Using Claude.ai (web)? Use the remote MCP connector at https://leadsapi.postorbit.io/mcp instead. It supports OAuth so claude.ai can connect with one click. See the docs for details.

Install

npm install -g @localleads/mcp
# or run on demand with npx (no install)
npx -y @localleads/mcp

Configure

You need a LocalLeads API key (starts with ll_). Generate one at Settings → Security → API Keys in your LocalLeads dashboard.

Claude Desktop

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

{
  "mcpServers": {
    "localleads": {
      "command": "npx",
      "args": ["-y", "@localleads/mcp"],
      "env": {
        "LOCALLEADS_API_KEY": "ll_your_key_here"
      }
    }
  }
}

Restart Claude Desktop. The LocalLeads tool icon (🔨) appears in the chat toolbar.

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "localleads": {
      "command": "npx",
      "args": ["-y", "@localleads/mcp"],
      "env": {
        "LOCALLEADS_API_KEY": "ll_your_key_here"
      }
    }
  }
}

Tools

| Name | Cost | What it does | |---|---|---| | search_leads | charges credits | Search Google Maps for businesses in a location. Returns a query ID. | | get_query_progress | free | Poll the status of an in-flight search. | | get_search_results | free | Retrieve leads from a completed search (compact by default). | | get_lead | free | Fetch one lead's full payload + enrichment by ID. | | list_all_leads | free | List every lead saved in the account, with filters (compact by default). | | enrich_leads | 1 credit per lead | Find verified business emails for one or more leads. | | get_enrichment_result | free | Get the email + confidence score for an enriched lead. | | verify_email | free | Verify an arbitrary email address (syntax + MX). | | list_enrichment_jobs | free | List in-flight search and enrichment jobs. | | check_credits | free | Return current credit balance. |

Environment variables

| Var | Required | Description | |---|---|---| | LOCALLEADS_API_KEY | yes | Your ll_… API key. | | LOCALLEADS_API_BASE | no | Override the API base URL. Defaults to https://leadsapi.postorbit.io. Must be https://. |

Maintainers

Publishing a new version? See PUBLISHING.md for the 2FA / token workflow.

License

MIT