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

calllint-mcp

v0.2.0

Published

MCP server for CallLint — a static preflight safety gate for MCP servers and agent tools. Use before installing or approving other MCP servers. Never executes the server it judges.

Readme

calllint-mcp

The MCP server for CallLint — a static preflight safety gate for MCP servers and agent tools.

Use CallLint before installing or approving other MCP servers. It produces evidence-backed verdicts — SAFE / REVIEW / BLOCK / UNKNOWN — for MCP configs and install snippets, entirely statically. It never executes the server it judges.

calllint-mcp is a thin wrapper: every tool delegates to the same engine behind the calllint CLI. No analysis logic of its own, no network on the scan path, no server execution.

The wrapper is versioned independently of the engine it embeds: calllint-mcp 0.2.0 bundles the CallLint 1.1.x engine. The wrapper version tracks the MCP surface (tools, transport, registry metadata); the embedded engine version tracks verdict semantics.

Install

No install needed — run via npx:

// e.g. Claude Desktop / Cursor MCP config
{
  "mcpServers": {
    "calllint": {
      "command": "npx",
      "args": ["-y", "calllint-mcp"]
    }
  }
}

Tools

| Tool | What it does | | --- | --- | | scan_mcp_config_path | Scan an MCP config file on disk → full ScanReport (verdict + evidence). | | scan_mcp_config_json | Scan MCP config JSON → compact decisions (verdict, fingerprint, reason codes). | | verify_baseline | Compare a config against a recorded baseline → drift / rug-pull signal. | | explain_finding | Full evidence-backed explanation of why a verdict was reached. | | generate_agent_rule | Emit the CallLint agent-safety rule for a host (claude, cursor, copilot, …). | | generate_ci_gate_snippet | Emit a GitHub Actions workflow that gates a repo on its agent-tool surface. |

Guarantees

  • Never executes a scanned MCP server (static analysis only).
  • No network on the scan path; deterministic given inputs.
  • SAFE means "no blockers observed", not proof of runtime safety.
  • UNKNOWN is never treated as safe.

Transport

JSON-RPC 2.0 over stdio (MCP). Zero runtime dependencies — the server is bundled into a single file, consistent with the calllint CLI.

License

Apache-2.0