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

@proofxhq/mcp-security-scanner

v0.1.0

Published

MCP Security Scanner -- Security testing tools for AI agents and MCP servers. Add to Cursor, Claude Desktop, or any MCP client.

Readme

MCP Security Scanner

Security testing tools for AI agents and MCP servers. Install as an MCP server in Cursor, Claude Desktop, or any MCP client.

8 tools. Zero dependencies. One install.

Install

Add to your MCP client config:

Cursor (.cursor/mcp.json):

{
  "mcpServers": {
    "security": {
      "command": "npx",
      "args": ["@cybersecai/mcp-security-scanner"]
    }
  }
}

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "security": {
      "command": "npx",
      "args": ["@cybersecai/mcp-security-scanner"]
    }
  }
}

Then ask your AI:

  • "Scan the MCP server at dvmcp.co.uk for vulnerabilities"
  • "Is it safe to pip install litellm?"
  • "Check if langchain-ai/langchain repo is safe"
  • "Audit my package.json for security issues"

Tools

MCP Server Security

| Tool | What it does | |------|-------------| | scan_server | Full OWASP MCP Top 10 scan of any MCP server. 10 checks including auth bypass, command injection, SSRF, rug pulls, tool poisoning, unsigned messages, replay attacks, path traversal, rate limiting. | | assess_risk | Risk-rate an MCP server's exposed tools before connecting. Scores each tool as CRITICAL/HIGH/MEDIUM/LOW/SAFE. | | check_call | Runtime GO/CAUTION/BLOCK decision before any MCP tool call. Checks arguments for injection, tool name for sensitivity, and package for CVEs. | | check_args | Check if tool call arguments contain injection patterns (command injection, SQL injection, path traversal, SSRF, prompt injection). |

Supply Chain Security

| Tool | What it does | |------|-------------| | safe_to_install | Check any npm or PyPI package before installing. Returns SAFE/CAUTION/DANGER verdict with full vulnerability details. | | check_cves | Query the OSV.dev database for known vulnerabilities in any package. | | audit_dependencies | Audit all dependencies in a package.json or requirements.txt file at once. | | check_repo | Check if a GitHub repo is trustworthy. Analyses age, stars, activity, license, and security signals. Returns a trust score out of 100. |

Examples

"Is it safe to install litellm?"

Verdict: DANGER -- DO NOT INSTALL
This package contains confirmed MALICIOUS CODE.
17 vulnerabilities including credential harvesting malware.

"Scan dvmcp.co.uk for vulnerabilities"

Results: 0 passed, 10 failed (3 critical, 4 high)
[FAIL] Command Injection (CRITICAL)
[FAIL] SSRF (HIGH)
[FAIL] Authentication Bypass (HIGH)
...

"Should I call run_command with argument '; rm -rf /'"

BLOCK -- Do not execute this call.
- CRITICAL: Command injection detected
- CRITICAL: Tool 'run_command' is a sensitive tool (shell execution)

"Is langchain-ai/langchain repo safe?"

Trust Score: 80/100 (SAFE)
131,361 stars | 41 months old | MIT license | Recently active

Test It

Scan our deliberately vulnerable MCP server:

"Scan the MCP server at https://dvmcp.co.uk for security issues"

Or try the one-click scan at dvmcp.co.uk.

Standards

Author

Raza Sharif, CyberSecAI Ltd

License

MIT