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

@build000r/mcp-mcp

v2.2.1

Published

Fast CLI tool to scan, view, park (JIT), and interactively manage MCP server configurations across all Claude projects

Downloads

7

Readme

MCP-MCP

A fast CLI tool to scan, view, and interactively manage MCP (Model Context Protocol) server configurations across all your Claude projects.

Features

  • 🔍 Smart scanning - Finds all .claude.json, .mcp.json, and project configurations
  • 🌳 Tree view - Visual hierarchy of configurations and their scope
  • 🎯 Two scan modes - Upstream (current project) or All (entire computer)
  • 🖱️ Interactive mode - Arrow key navigation to select and uninstall servers
  • 📊 Statistics - Overview of your MCP server distribution
  • 🚀 Fast & parallel - Async scanning with performance optimization

Usage

Basic Scanning

# Show MCP configs affecting current directory (upstream)
npx @build000r/mcp-mcp

# Show ALL MCP configs on computer  
npx @build000r/mcp-mcp --a

# Show statistics
npx @build000r/mcp-mcp stats
npx @build000r/mcp-mcp stats --a

Interactive Mode (NEW!)

# Interactive mode - select servers to uninstall
npx @build000r/mcp-mcp --i

# Interactive mode for ALL servers
npx @build000r/mcp-mcp --i --a

# Show help
npx @build000r/mcp-mcp help

Example Output

Tree View

MCP Configuration Tree (Upstream - 18ms)

├── /Users/username (user)
│   ├── product-manager (stdio) [REST_API_URL]
│   └── stripe (http)
│
├── /Users/username/project (workspace)
│   └── supabase-sweet-potato (stdio) [SUPABASE_URL, SUPABASE_ANON_KEY, SUPABASE_SERVICE_ROLE_KEY, MCP_API_KEY] (.claude.json (project), .mcp.json)

Interactive Mode

MCP Server Manager - Interactive Mode

Use arrow keys to navigate, press Enter to select servers to uninstall.

? Select servers to uninstall: (Press <space> to select, <a> to toggle all, <i> to invert selection)
 ◯ product-manager (stdio) - /Users/username (user) [REST_API_URL]
 ◯ stripe (http) - /Users/username (user)
❯◉ orchestrator (stdio) - /Users/username/project (workspace)
 ────────────────
 ◯ Exit

? Are you sure you want to uninstall 1 server(s)? (y/N)

Uninstalling orchestrator...
✓ Successfully uninstalled orchestrator

Statistics

MCP Configuration Statistics (All)

Summary:
  Total configuration locations: 8
  Total MCP servers: 18
  Unique server types: 8

Configuration Files Found:
  .claude.json: 1
  .claude.json (project): 5
  .mcp.json: 2

Server Distribution:
  github (unknown): 3 instances
  supabase-sweet-potato (stdio): 3 instances
  product-manager (stdio): 1 instance

Scan Modes

  • upstream (default) - Scans from current directory up to home + subdirectories
  • all (--a) - Scans entire computer for all MCP configurations

Configuration Scopes

  • user - User-wide (~/.claude.json)
  • workspace - Project-specific (.claude.json projects or .mcp.json files)
  • system - System-wide (requires admin privileges)

Requirements

  • Node.js 14.0.0 or higher
  • Claude CLI (for uninstall functionality)

License

MIT