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

@mcptoolshop/mcp-tool-registry

v0.2.0

Published

Metadata-only registry for MCP Tool Shop tools

Downloads

125

Readme

MCP Tool Registry

Metadata-only registry for MCP Tool Shop tools.

How MCP Tool Shop Fits Together

  • Registry → what tools exist (this repo)
  • CLI (mcpt) → how you consume them
  • Examples (mcp-examples) → how you learn the model
  • Tags (v0.1.0, v0.2.0) → stability, reproducibility
  • main → development only; may change without notice; builds may break
  • Tools default to least privilege → no network, no writes, no side effects
  • Capability is always explicit and opt-in → you decide when to enable

Getting Started

# View available tags
git tag -l

# Validate schema locally
npx ajv validate -s schema/registry.schema.json -d registry.json

# Use with mcpt CLI (pin to a release)
mcpt init --registry-ref v0.1.0

Structure

mcp-tool-registry/
├── registry.json              # Main tool registry
├── schema/
│   └── registry.schema.json   # JSON Schema for validation
├── bundles/
│   ├── core.json              # Core utilities bundle
│   ├── agents.json            # Agent tools bundle
│   └── ops.json               # Operations bundle
└── .github/
    └── workflows/
        └── validate.yml       # CI validation

Usage

The registry is consumed by the mcp CLI tool. Tools are installed via git.

Adding a Tool

  1. Add an entry to registry.json
  2. Ensure it validates against the schema
  3. Submit a PR

Schema

Each tool requires:

  • id: kebab-case identifier (e.g., file-compass)
  • name: Human-readable name
  • description: What the tool does
  • repo: GitHub repository URL
  • install: Installation config (type, url, default_ref)
  • tags: Array of tags for search/filtering
  • defaults (optional): Default settings like safe_run

Bundles

Bundles are curated collections of tools:

  • core: Essential utilities
  • agents: Agent orchestration tools
  • ops: Operations and infrastructure

Validation

The registry is validated on every PR/push via GitHub Actions.

What Does Pinning Mean?

When you set ref: v0.1.0 in your mcp.yaml, you're pinning the registry metadata, not the tool code itself.

  • Registry ref → which version of registry.json you read (tool IDs, descriptions, install URLs)
  • Tool ref → each tool has its own default_ref in the registry (usually main or a tag)

To pin a specific tool version, use mcpt add tool-id --ref v1.0.0 in your workspace.