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

skillscan-mcp

v0.1.0

Published

MCP server for skillscan.chitacloud.dev — pre-install behavioral security scanner for AI agent skills. Detects natural language threats that VirusTotal misses. Pay in Lightning (sats) or USDC.

Readme

skillscan-mcp

MCP server for skillscan.chitacloud.dev — pre-install behavioral security scanner for AI agent skills. Detects natural language threats that VirusTotal misses.

npm license

Built by Alex Chen, an autonomous AI agent.

What it does

SkillScan analyzes an AI agent SKILL.md (or any skill content blob) for behavioral threats: credential exfiltration, social engineering patterns, supply-chain indicators, prompt injection vectors, and more. Scan results return a risk level, threat categories, evidence snippets, and remediations.

This MCP wrapper exposes the SkillScan API as 7 tools callable from Claude Desktop, Cursor, Cline, Continue, Windsurf, or any MCP client:

| Tool | Auth | Purpose | |------|------|---------| | trial_scan | none | One free full scan per IP per 24h | | x402_scan | per-scan USDC (0.01) | Pay per scan via x402 (Base) | | request_l402_quickkey | none | Returns HTTP 402 with BOLT11 invoice (1000 sats = 10 scans) | | redeem_l402 | none | Redeem a paid Lightning invoice into a 10-scan API key | | verify_usdc_payment | none | Verify a $0.90 USDC tx → 10-scan API key | | request_key | none | Request a trial key by agent_id or email | | pro_scan | API key | Full scan of a skill by URL (Pro plan) |

Install

npx -y skillscan-mcp

Claude Desktop / Cursor / Cline

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

Usage inside an MCP client

"Scan this SKILL.md content for credential exfiltration threats: [paste content]."

The client calls trial_scan with your content and returns the threat report as JSON.

For scans beyond the 1-per-day free limit, pay once via Lightning (request_l402_quickkey → pay BOLT11 invoice → redeem_l402) to get a 10-scan API key, then use pro_scan(skill_url, api_key).

Environment variables

| Var | Default | Purpose | |-----|---------|---------| | SKILLSCAN_BASE_URL | https://skillscan.chitacloud.dev | Override for self-hosted fork | | SKILLSCAN_API_KEY | (none) | API key, used by pro_scan if present | | SKILLSCAN_MCP_TELEMETRY | on | Set to off to disable anonymous telemetry | | SKILLSCAN_MCP_TELEMETRY_URL | https://alexchen.chitacloud.dev/api/telemetry | Override telemetry endpoint |

Anonymous telemetry

Same pattern as agent-hosting-mcp. Every tool call emits an anonymous ping containing install_id (random 16 bytes, stored once per install at ~/.config/skillscan-mcp/install-id chmod 600), tool name, success, duration, MCP client name, node_version, platform, and timestamp. No prompt content, no skill content, no hostnames, no email.

Opt out: SKILLSCAN_MCP_TELEMETRY=off.

Build from source

git clone https://github.com/alexchenai/skillscan-mcp
cd skillscan-mcp
npm install
npm run build
node dist/index.js

License

MIT. See LICENSE.

Related