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

cve-fix-check

v0.1.0

Published

MCP server: CVE lookup + fixed-version availability for packages, container images, and SBOMs. Keyless public sources (OSV.dev, EPSS, Alpine/Wolfi secdb, Ubuntu security tracker). No telemetry.

Readme

cve-fix-check

npm License: Apache-2.0

MCP server for CVE lookup + fixed-version availability — for packages, container images, and SBOMs. Built for AI agents that need to answer the question scanners skip: "is there a fixed package I can actually upgrade to, today?"

  • Free, local, keyless. All sources are public APIs fetched directly from your machine — OSV.dev, FIRST EPSS, the Alpine & Wolfi security databases, and the Ubuntu security tracker.
  • Zero telemetry. Nothing proxies through us; there is no "us" at runtime.
  • Born in production. We maintain 130+ hardened OS/app images across the Azure, AWS, and OCI marketplaces on a continuous CVE-rebuild treadmill — this server packages the exact checks that pipeline runs every day.

Install (Claude Code / any MCP client)

{
  "mcpServers": {
    "cve-fix-check": { "command": "npx", "args": ["-y", "cve-fix-check"] }
  }
}

Requires Node ≥ 20. No configuration, no accounts, no API keys.

Tools

| Tool | Question it answers | |---|---| | cve_lookup | What is CVE-X / GHSA-Y? Severity, EPSS exploit-prediction score, affected packages, fixed versions, aliases. | | package_vulns | What's known against [email protected] (npm, PyPI, Go, Maven, crates.io, RubyGems, NuGet, Packagist, Alpine, Wolfi, Debian, Ubuntu)? | | fix_availability | Is a fixed package in the distro repo right now? Checks Alpine secdb / Wolfi feed / Ubuntu tracker → FIXED_AVAILABLE (with version), NOT_FIXED_YET, NOT_AFFECTED, NOT_LISTED, UNKNOWN_PACKAGE, SOURCE_UNAVAILABLE. | | sbom_scan | Which components of this CycloneDX/SPDX SBOM (or purl list) are vulnerable? Batch query with severity hydration and honest truncation notes. |

Example: the daily rebuild question

"Trivy flagged CVE-2024-6119 in openssl on our alpine:3.20 image — can we rebuild our way out of it right now?"

fix_availability { cve: "CVE-2024-6119", package: "openssl", target: "alpine:v3.20" }
→ { "verdict": "FIXED_AVAILABLE", "fixed_version": "3.3.2-r0",
    "detail": "apk upgrade to openssl>=3.3.2-r0 on v3.20", ... }

That verdict is the difference between "rebuild now" and "waste a rebuild cycle re-finding the same CVE" (we learned this the hard way).

Resilience

Distro endpoints flake (ubuntu.com's CVE API 504s on large records — it was down the day we wrote our smoke tests). The server retries with backoff, and for Ubuntu falls back to Canonical's OSV feed; when a source is truly unreachable you get a structured SOURCE_UNAVAILABLE verdict, never a tool crash — agents read verdicts well and handle exceptions badly.

Honest scope (v0.1)

  • Coverage is OSV's coverage: open-source ecosystems. A CVE against closed-source software or an OS kernel may return found: false.
  • Fix-availability targets: alpine:vX.Y, wolfi, ubuntu:XX.YY. Debian/RHEL-family trackers are on the roadmap.
  • CVE records without ecosystem data point you at their GHSA alias for per-ecosystem fix versions.
  • This is a lookup/triage tool, not a scanner: generate SBOMs with Trivy or Syft, then interrogate them here.

Development

npm install
npm run build   # tsc → dist/
npm test        # unit tests (offline, fixture-based)
npm run smoke   # live API smoke (network)
npm run e2e     # real MCP client ↔ server over stdio

License

Apache-2.0. © Derek Coleman & Associates Inc.