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

@mcp-trust/cli

v0.5.4

Published

Evidence-based preflight security scanner for Model Context Protocol (MCP) servers.

Readme

MCP Trust — @mcp-trust/cli

Evidence-based preflight security scanner for Model Context Protocol (MCP) servers. Check what an MCP server can do — before your AI agent uses it.

MCP servers can run shell commands, read files, query databases and call APIs. MCP Trust maps what a server can do, scans its install command, code, dependencies and metadata, then returns an APPROVE / APPROVE_WITH_RESTRICTIONS / NEEDS_REVIEW / BLOCK decision with evidence.

Usage — no install needed

npx @mcp-trust/cli scan github:owner/repo        # scan a public GitHub repo
npx @mcp-trust/cli scan npm:@org/mcp-server      # scan npm package metadata
npx @mcp-trust/cli scan ./claude_desktop_config.json   # scan a local MCP config

Or install globally:

npm install -g @mcp-trust/cli
mcp-trust scan ./path/to/repo --format json,md,html,sarif

Reports are written to ./reports/<name>.{json,md,html,sarif} (change with --output <dir>). Open the .html in a browser, or read the .md. The exit code is non-zero when findings meet --fail-on (default high), so it works as a CI gate.

What it checks

  • Install/config risks — unpinned npx/uvx, curl | sh, inline shell, embedded secrets, sensitive paths, plain-HTTP endpoints.
  • Code riskschild_process.exec, eval, arbitrary file write/delete, secret env access (30 deterministic rules + 12 Semgrep AST rules for JS/TS/Python; Semgrep runs when the semgrep binary is on PATH).
  • Tool/prompt metadata — instruction-override, concealment and exfiltration phrasing.
  • Supply chain — repo/package mismatch, install scripts, floating versions, missing policy.

Code in languages it can't analyze (Go, Rust, …) is flagged with a ⚠️ Limitations note, so an APPROVE is never a silent clean bill.

Options

--format <list>   console,json,md,html,sarif (default: console,json,md)
--output <dir>    report directory (default: reports)
--fail-on <sev>   exit non-zero at/above: low|medium|high|critical (default: high)
--sandbox docker  run introspection inside a locked-down Docker container
--no-semgrep      skip the Semgrep AST ruleset

Safety

MCP Trust treats every target as hostile. It never executes untrusted code outside a Docker sandbox, byte/size-caps untrusted output, redacts secrets, and reports coverage honestly. It is a risk-assessment tool, not a guarantee of safety.

Links

  • Source, docs, GitHub Action & public benchmark reports: https://github.com/SteveMonsway/mcp-trust
  • License: Apache-2.0