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

safeskill

v0.1.0

Published

One-click security audit for your MCP setup. One score, plain English, no CLI knowledge required.

Downloads

11

Readme

SafeSkill

One-click security audit for your MCP setup.

One score. Plain English. No CLI knowledge required.

We Scanned the MCP Ecosystem

We downloaded and scanned 3,093 MCP packages from npm and the official MCP registry. The results:

  • 858 packages (28%) had at least one security finding
  • 397 packages (13%) rated RED (score below 50)
  • 176 packages scored a flat 0/100

Cisco, 1Password, Snyk, and Bitdefender have all flagged MCP's lack of sandboxing and permissions as a serious risk. We built SafeSkill to let you check for yourself.

Read the full analysis: I Scanned 3,093 MCP Servers. Here's What I Found.

Try It Now

No install required. Paste any npm package name into the web scanner:

getsafeskill.vercel.app

Quick Start

As an MCP Skill (recommended)

Add SafeSkill to your MCP configuration and just ask your agent:

"Check if my MCP setup is safe"

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

As a CLI

# Scan your entire setup
npx safeskill

# Scan a specific skill
npx safeskill scan ./my-mcp-server

# Check config only
npx safeskill config

# JSON output
npx safeskill --format=json

What It Detects

Critical

  • Dynamic code execution (eval(), new Function())
  • Shell command injection
  • Data exfiltration to Telegram/Discord/paste sites
  • Access to SSH keys, cloud credentials, crypto wallets, browser data
  • Prompt injection in skill descriptions
  • Environment variable theft over network
  • Crypto wallet address replacement

High

  • Child process spawning
  • Outbound HTTP to raw IP addresses
  • Bulk environment variable harvesting
  • Base64/hex obfuscation at runtime
  • JavaScript code obfuscation
  • Hardcoded API keys and secrets
  • Access to .env and dotfiles
  • Exposed ports (0.0.0.0 binding)
  • Disabled authentication flags

Medium

  • Data encoding before transmission
  • Hidden Unicode characters
  • Hardcoded secrets in config
  • Supply chain risk (npx/uvx execution)

Scoring

Each skill gets a score from 0-100:

| Score | Rating | Meaning | |-------|--------|---------| | 80-100 | GREEN | No significant issues found | | 50-79 | YELLOW | Some concerns, review the findings | | 0-49 | RED | Serious issues, remove or replace this skill |

Scores are based on the number and severity of findings, with diminishing returns for repeated instances of the same issue.

Overall Score: 62/100 YELLOW [############--------]

Found 7 security issues across 4 skills.

Skills you should remove:
- sketchy-data-tool (Score: 15/100) — tries to read your SSH keys and send them to a server
- crypto-helper (Score: 35/100) — contains a hardcoded crypto wallet address

Skills to review:
- file-manager (Score: 65/100) — can run system commands on your computer

Clean skills: weather, calculator, notes

Output Formats

  • Conversational: Chat-friendly summary for use in MCP agents
  • Detailed: Full markdown report with all findings
  • JSON: Machine-readable output for automation

Building from Source

git clone https://github.com/gabchess/safeskill.git
cd safeskill
npm install
npm run build

License

MIT