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

cc-mcp-audit

v1.0.0

Published

Governance posture analysis for MCP servers. Extracts tool inventories, classifies sensitivity, detects auth/logging/gate patterns, and surfaces named accountability gaps. Does not detect code-level vulnerabilities -- pair with SAST and dependency scannin

Readme

cc-mcp-audit

Governance posture analysis for MCP servers. Extracts tool inventories, classifies sensitivity, detects auth/logging/gate patterns, and surfaces named accountability gaps. Does not detect code-level vulnerabilities -- pair with SAST and dependency scanning for deployment decisions.

Install

From the ordovera-plugins monorepo:

cd packages/cc-mcp-audit && npm install && npm run build

Then run with:

npx cc-mcp-audit <github-url-or-local-path> --format json

Not yet published to npm. Must be built from source.

Usage

# Analyze a single server by GitHub URL
cc-mcp-audit https://github.com/org/mcp-server --format json

# Analyze a local directory
cc-mcp-audit ./path/to/server --format json

# Analyze from a candidates file (from discover)
cc-mcp-audit -c candidates.json --format json

# Markdown report for multiple servers
cc-mcp-audit -c candidates.json --format markdown

# Write output to file
cc-mcp-audit -c candidates.json --format json -o report.json

# With LLM screening for Domain 5 triage hints
cc-mcp-audit https://github.com/org/mcp-server --llm-screen

# Discover MCP server candidates
cc-mcp-audit discover --min-stars 50 -o candidates.json
cc-mcp-audit discover --language TypeScript --language Python
cc-mcp-audit discover --skip-github  # curated lists only

What It Checks

Five named accountability gap patterns:

| Pattern | Confidence | What It Means | |---|---|---| | ungated-write | High | Write tools with no confirmation gate co-located | | global-auth-over-sensitive-tools | High/Low | Uniform auth across tools with different sensitivity | | auth-without-actor-logging | High | Auth present but log statements lack principal identifiers | | logging-without-attribution | Medium | Logging present but no principal identifiers and no auth | | destructive-without-audit-trail | High | Irreversible operations (drop, delete, truncate) with no logging |

Per-server governance posture:

  • Authorization: Global / Per-tool / None / Delegated
  • Logging: Comprehensive / Partial / None -- attributed or unattributed
  • Gates: Default-safe / Default-unsafe / Absent

Discovery

The discover subcommand finds MCP server candidates from curated lists and GitHub search:

cc-mcp-audit discover [options]

Options:
  -o, --output <file>          Write candidates to file (default: stdout)
  --min-stars <n>              Minimum GitHub stars (default: 10)
  --updated-after <date>       Only repos pushed after this ISO date
  --language <lang>            Filter by language (repeatable)
  --exclude <pattern>          Exclude repos matching pattern (repeatable)
  --github-token <token>       GitHub API token (higher rate limits)
  --skip-github                Skip GitHub search, curated lists only
  --skip-curated               Skip curated lists, GitHub search only
  --existing <file>            Existing candidates file for deduplication

LLM Screening

Optional --llm-screen adds Domain 5 triage hints for governance-relevant behavioral properties:

  • Self-modification prevention
  • Sub-agent authority constraints
  • Permission boundary enforcement

Hints are likely-present, likely-absent, or unclear with cited file:line locations. They prioritize human review order -- they are not findings. Provider auto-detects Claude Code CLI if on PATH, otherwise uses ANTHROPIC_API_KEY.

Environment

  • GITHUB_TOKEN -- GitHub personal access token for discovery enrichment and higher API rate limits
  • ANTHROPIC_API_KEY -- Required for --llm-screen if Claude Code CLI is not on PATH

Relationship to the mcp-audit Plugin

This package is the CLI engine. The mcp-audit plugin wraps it with interpretive analysis -- it runs the CLI, reads the output, and presents a governance posture report with context-aware risk summaries.

You can use cc-mcp-audit standalone (in scripts, CI, batch analysis) or through the plugin (interactive, interpretive).

Sibling packages and plugins

License

MIT