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

@opzyai/mcp

v0.1.2

Published

Local-first security check MCP server for AI coding agents — finds hardcoded secrets, exposed .env files, secrets in git history, and vulnerable dependencies in your workspace, entirely on your machine.

Readme

@opzyai/mcp

npm license

A local-first security check for AI coding agents. An MCP server that scans the project in your workspace for the mistakes that ship secrets and vulnerabilities to production — and runs entirely on your machine.

Ask your agent "is this safe to ship?" and get a Launch Readiness score with a fix for every finding.

Built by Opzyai — source at thfothijn/opzyai-mcp. For deep, server-side scanning of repositories you own (SAST, dependency CVEs, git-history secrets) and fixes your AI editor applies for you, see the hosted Pro server.

What it checks

The single security_check tool runs four detectors over your project:

  • Hardcoded secrets — API keys, tokens and credentials in your working tree (OpenAI, Anthropic, Stripe, Supabase service-role, AWS, GitHub and more).
  • Exposed .env files — env files that are committed or not gitignored.
  • Secrets in git history — credentials that were committed and later "removed" (but are still in the history).
  • Vulnerable dependencies — known-vulnerable packages, checked against OSV (package-lock.json, pnpm-lock.yaml and yarn.lock supported).

Example output

Launch Readiness: 35/100 — not safe to ship yet.

Findings (2), most severe first:

[CRITICAL] Stripe live secret key in source
  Where: src/lib/billing.ts:12
  Why:   sk_live_… assigned to a constant that ships to production
  Fix:   Move it to an environment variable and rotate the key in the Stripe dashboard.

[HIGH] .env is not gitignored
  Where: .env
  Why:   the file with your real credentials can be committed by any `git add .`
  Fix:   Add `.env` to .gitignore and rotate anything already committed.

Dependency check used OSV.dev — only package names + versions were sent, never your code.
Ran entirely on your machine.

Privacy

Everything runs locally over stdio. The only network call is the dependency check (OSV), which sends package names + versions only — never your code. Pass offline: true to skip it so nothing leaves your machine at all.

Install

No global install needed — run it on demand with npx.

Claude Code

claude mcp add opzyai -- npx -y @opzyai/mcp

Cursor / generic MCP client

{
  "mcpServers": {
    "opzyai": {
      "command": "npx",
      "args": ["-y", "@opzyai/mcp"]
    }
  }
}

Then ask your agent: "run a security check on this project" or "is this safe to ship?"

Tool reference

security_check

| Input | Type | Description | | --------- | --------- | -------------------------------------------------------------------- | | path | string? | Project root to scan. Defaults to the current working directory. | | offline | boolean?| Skip the OSV dependency check so nothing leaves the machine. |

Free URL scan

Not sure what your deployed app exposes? Run the free, no-account Vibe Check — paste your URL, get a 0–100 Launch Readiness score in ~15 seconds (leaked keys in the client bundle, exposed .env / .git / source maps, missing headers).

Requirements

  • Node.js >= 20
  • git on PATH (for the git-history check)

License

MIT © Opzyai