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

@mnraynor90/mcp-doc

v0.2.0

Published

An MCP server that auto-discovers and health-checks all your other MCP servers

Readme

mcp-doc

An MCP server that auto-discovers and health-checks all your other MCP servers. Add it once, ask your AI tool "what's broken?", done.

What It Does

mcp-doc is a diagnostic tool, not a proxy. It scans your machine for every MCP server configured across all your projects and IDEs, checks if they're healthy, and tracks history over time. Your existing MCP connections stay exactly as they are.

Tools

| Tool | Description | |------|-------------| | list_servers | Discover all MCP servers across all projects. Scans ~/.claude.json, .mcp.json, Cursor, and VS Code configs. | | check_health | Spawn each server, perform the MCP handshake, verify it responds. Saves results to history. | | server_history | Show past health check results and uptime stats for a specific server. | | server_detail | Deep inspection of a single server: config, live health check, full tool list, cross-project duplicates. |

Example

Ask Claude: "Are all my MCP servers healthy?"

Health check complete (9 servers, 9.7s):

✓ totetaxi/langsmith              OK   1.2s  16 tools
✓ totetaxi/sentry                 OK   1.4s  22 tools
✓ store/sentry                    OK   1.2s  22 tools
✓ store/postgres-local            OK   0.9s   1 tools
✓ store/postgres-prod             OK   0.9s   1 tools
✓ store/redis                     OK   0.9s  45 tools
✓ store/netlify                   OK   1.3s   9 tools
✓ store/railway                   OK   1.1s  14 tools
✓ matt-website/google-analytics   OK   0.7s   6 tools

9 healthy, 0 failing

Install

Add to your Claude Code config (~/.claude.json for global, or .mcp.json for per-project):

{
  "mcpServers": {
    "doctor": {
      "command": "npx",
      "args": ["@mnraynor90/mcp-doc"]
    }
  }
}

Restart your IDE. That's it.

How It Works

  1. Discovery — Scans config files from Claude Code, Cursor, and VS Code to find all MCP servers across all your projects
  2. Health Check — Spawns each server as a temporary child process, sends initialize + tools/list via JSON-RPC, measures response time, then kills the process
  3. History — Saves results to a local SQLite database at ~/.mcp-doc/history.db
  4. Reporting — Returns formatted results through MCP tools that your AI assistant can read and interpret

What It Scans

| Source | Path | |--------|------| | Claude Code (global) | ~/.claude.jsonprojects.*.mcpServers | | Claude Code (project) | <project>/.mcp.json | | Cursor (global) | ~/.cursor/mcp.json | | VS Code (project) | <project>/.vscode/mcp.json |

What It Does NOT Do

  • Does not proxy traffic — your servers connect directly to your IDE
  • Does not modify any config files
  • Does not run servers persistently — spawns briefly for health checks only
  • Does not require an account, API key, or cloud service
  • Does not add latency to your normal MCP usage

How It Compares

| | mcp-hub | MetaMCP | mcp-doc | |---|---|---|---| | Setup | Write a separate config | Create account + API key | Zero config — auto-discovers | | Architecture | Proxy | Cloud proxy + GUI | Read-only scanner | | Cross-project | No | Yes (workspaces) | Yes (auto-scan) | | Health history | Current only | Current only | SQLite history | | Privacy | Local | Cloud | Local |

Development

git clone https://github.com/mattyray/mcp-doc.git
cd mcp-doc
npm install
npm run build

Tech Stack

License

MIT