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

@incultnitollc/mcpr

v0.2.1

Published

MCP Registry CLI — search, inspect, and score MCP servers across clients.

Downloads

80

Readme

mcpr

Search, inspect, and score MCP servers from your terminal.

The CLI half of the MCP Registry — a curated index of Model Context Protocol servers with structured metadata and quality scores from @incultnitollc/mcp-probe.

Install

npm install -g @incultnitollc/mcpr
# or run without installing
npx @incultnitollc/mcpr search filesystem

After the global install the bin is mcpr — the scope only matters at install time, not at the command line.

Node 20+ required.

Usage

mcpr search  <query>    # search by name / slug / description
mcpr info    <slug>     # full detail for one server
mcpr score   <slug>     # quality-score breakdown
mcpr install <slug>     # write a server into a client config (mcpServers)

Examples

mcpr search filesystem
mcpr search github --limit 10
mcpr info  mcpr-ai-arclan-registry
mcpr score mcpr-ai-arclan-registry

mcpr install <slug>

Write a server into an MCP client config under mcpServers, deriving an npx launch command from the server's npm package. Supported clients: Claude Desktop, Cline. The target config is auto-detected; override it with --client.

mcpr install npm-figma-mcp                          # auto-detect client, write entry
mcpr install npm-figma-mcp --client claude-desktop  # target one client
mcpr install npm-figma-mcp --dry-run                # preview the diff, write nothing
mcpr install npm-figma-mcp --force                  # overwrite a differing entry

| Flag | Effect | |---|---| | --client <claude-desktop\|cline> | Target one client instead of auto-detecting. | | --dry-run | Print the config change; write nothing. | | --force | Overwrite an existing entry whose values differ. |

The original config is copied to <path>.bak.<unix-ts> before every write. Servers without a resolvable npm package print a manual-install link instead of writing a broken config. Cursor, Windsurf, and VS Code MCP are on the v1.2 roadmap.

Configuration

The CLI talks to the public Registry by default. Override the endpoint with environment variables if you're running a private mirror:

| Variable | Default | |---|---| | MCPR_SUPABASE_URL | https://kpqxrtsdcmwbszznpeem.supabase.co | | MCPR_SUPABASE_ANON_KEY | embedded anon key (read-only, RLS-governed) |

What the Registry covers

  • ~6,900 MCP servers indexed from six upstream sources (Anthropic curated, Microsoft, Google, Pipedream, the official modelcontextprotocol.io registry, and npm).
  • Canonical SPDX license normalization.
  • Quality scores from mcp-probe — compliance, tool reliability, schema validity, error handling, latency p50.

License

MIT © Incultnito LLC