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

mcpwatch-mcp

v0.1.1

Published

MCP server that audits other MCP servers. Run MCPWatch security scans from inside your Claude Code / agent loop with 10 OWASP MCP Top 10 checks.

Readme

mcpwatch-mcp

The MCP server that audits other MCP servers. Run MCPWatch security scans from inside Claude Code / Cursor / Windsurf.

Part of MCPWatch.

Install

{
  "mcpServers": {
    "mcpwatch": {
      "command": "npx",
      "args": ["-y", "mcpwatch-mcp"]
    }
  }
}

Drop the above into your Claude Desktop / Cursor / Windsurf MCP config. Restart, and four new tools are available to the agent:

Tools

scan_directory

Run the 10 OWASP MCP Top 10 checks on a local directory.

scan_directory({ path: "/Users/me/code/my-mcp-server" })

Returns a grade (A–F), a 0–100 score, and per-finding evidence + remediation. Optionally returns a SARIF v2.1.0 document with sarif: true.

scan_github_repo

Fetch the latest scan for a public GitHub MCP repo from the MCPWatch crawler.

scan_github_repo({ owner: "oraios", repo: "serena" })

get_leaderboard

Pull the top N MCP servers from the live MCPWatch leaderboard, optionally filtered by grade.

get_leaderboard({ limit: 10, grade_filter: "A" })

get_badge_url

Get a ready-to-paste MCPWatch SVG grade badge for your README.

get_badge_url({ owner: "lazymac2x", repo: "mcpwatch" })

Why run this through an MCP server?

  • The agent can audit an MCP before it suggests you install it — no manual CLI step
  • Findings come back as structured text the agent can reason about
  • SARIF output flows directly into the GitHub Security tab via the mcpwatch-action
  • Zero extra configuration beyond the mcpServers entry

Example prompts

  • "Before I install oraios/serena, scan it with mcpwatch."
  • "Show me the top 5 grade-A MCP servers from the leaderboard."
  • "What is the current MCPWatch grade of google-gemini/gemini-cli?"

License

MIT