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

tooltrust-mcp

v1.1.12

Published

MCP server that scans other MCP servers for prompt injection, data exfiltration, and privilege escalation. Add to your .mcp.json and let your AI agent audit its own tools.

Readme

tooltrust-mcp

tooltrust-scanner MCP server npm

Scan MCP servers for prompt injection, data exfiltration, risky permissions, supply-chain threats, and privilege escalation before your agent blindly trusts them.

First run downloads a ~10MB Go binary from GitHub Releases and caches it at ~/.tooltrust-mcp/bin/. Subsequent runs use the cached binary with no download.

What it catches

  • Prompt injection and tool poisoning hidden in descriptions
  • Excessive permissions such as exec, network, db, and fs
  • Supply-chain CVEs and known compromised package versions
  • Suspicious npm lifecycle scripts that execute during install
  • Suspicious npm IOC dependencies and indicators such as plain-crypto-js, reviewed install-script patterns, malicious domains, and URLs referenced from published package metadata
  • Dependency visibility gaps when an MCP server does not expose dependency metadata
  • Privilege escalation and arbitrary code execution patterns
  • Typosquatting, tool shadowing, and insecure secret handling
  • Missing rate-limit, timeout, or retry configuration on risky tools

Quick start

Add to your .mcp.json:

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

Then ask your agent: run tooltrust_scan_config

Available tools

| Tool | Description | |------|-------------| | tooltrust_scan_config | Scan all servers in your .mcp.json or ~/.claude.json | | tooltrust_scan_server | Scan a specific MCP server | | tooltrust_scanner_scan | Scan a JSON blob of tool definitions | | tooltrust_lookup | Look up a server's trust grade | | tooltrust_list_rules | List built-in tool-definition security rules |

Dependency visibility

ToolTrust reports how much dependency evidence it could recover:

  • No dependency data
  • Declared by MCP metadata
  • Verified from local lockfile
  • Verified from remote lockfile
  • Repo URL available

For local scans, ToolTrust will also try to inspect nearby package-lock.json, pnpm-lock.yaml, yarn.lock, go.sum, and requirements.txt files when it can infer the project root from the launch command.

For GitHub-backed repo_url scans, ToolTrust also inspects remote package-lock.json, pnpm-lock.yaml, yarn.lock, go.sum, and requirements.txt files to recover transitive dependency evidence.

Recent supply-chain incident coverage includes:

  • LiteLLM 1.82.7 / 1.82.8 and related TeamPCP compromise indicators
  • Axios 1.14.1 / 0.30.4 malicious npm publish
  • @cap-js/db-service, @cap-js/postgres, and @cap-js/sqlite compromised release versions
  • npm IOC helpers such as plain-crypto-js

Example output

Scan Summary: 14 tools scanned | 13 allowed | 1 need approval | 0 blocked
Tool Grades: A×13  C×1
Findings by Severity: HIGH×1  MEDIUM×14  LOW×1 (16 total)

Flagged Tools:
• search_files  🟡 GRADE C  needs approval
  [AS-002] High: Network access declared
  [AS-011] Low: Missing rate-limit or timeout
  Action now: Keep this tool on manual approval until the risky capabilities are reviewed.

Links

  • GitHub: https://github.com/AgentSafe-AI/tooltrust-scanner
  • Glama: https://glama.ai/mcp/servers/AgentSafe-AI/tooltrust-scanner
  • Directory: https://www.tooltrust.dev/
  • Rules: https://github.com/AgentSafe-AI/tooltrust-scanner/blob/main/docs/RULES.md