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

mcp-overseer

v1.0.1

Published

Security scanner, traffic monitor, and dashboard for MCP servers — in one command.

Readme

🛡️ MCP Overseer

Security scanner, traffic monitor, and dashboard for MCP servers.

npm version License: MIT TypeScript


Why?

If you use MCP servers with Claude Desktop, Cursor, or VS Code — your agent can read files, run shell commands, hit APIs, and query databases.

Most people never audit what's actually exposed. This tool does that for you.

  • Scans your configured MCP servers for security risks
  • Grades each server A through F based on what tools it exposes
  • Gives you a web dashboard to see everything at a glance

Quick Start

npx mcp-overseer scan
npx mcp-overseer dashboard
npx mcp-overseer monitor

No config needed. Auto-discovers servers from Claude Desktop, Cursor, VS Code, Windsurf, and Cline.


Features

Security Scanner

  • Auto-discovery — finds configs across Claude Desktop, Cursor, VS Code, Windsurf, Cline, and local project files
  • 10 rule categories — code execution, file system, network, database, credentials, process management, source control, browser automation, etc.
  • A-F grading — per server and overall
  • Static + live analysis — pattern matching for known servers, JSON-RPC for unknown ones
  • JSON output — for CI/CD pipelines
$ npx mcp-overseer scan

  🛡️ MCP Overseer — Overall Security Report
  ╔═══════════════════════════════════════════╗
  ║                                           ║
  ║   ██████╗     Overall Grade: D            ║
  ║   ██╔══██╗    ████████████░░░░░░░░ 40/100 ║
  ║   ██║  ██║                                ║
  ║   ██║  ██║    Servers scanned: 5          ║
  ║   ██████╔╝    Total tools:     24         ║
  ║   ╚═════╝                                 ║
  ║                                           ║
  ║   🔴 Critical:  7                         ║
  ║   🟡 Warnings:  6                         ║
  ║   🔵 Info:      3                         ║
  ║                                           ║
  ╚═══════════════════════════════════════════╝

Web Dashboard

npx mcp-overseer dashboard
# http://localhost:4173

Dark UI with server grade cards, findings table, tool inventory with risk tags, and real-time updates via WebSocket.

Traffic Monitor

npx mcp-overseer monitor --server filesystem

Watches MCP traffic in your terminal with color-coded methods and timestamps.


Security Rules

| ID | Category | Severity | Detects | |---|---|---|---| | EXEC_001 | Code Execution | 🔴 Critical | Shell commands, eval, subprocess | | FS_001 | File System Write | 🔴 Critical | File creation, modification, deletion | | NET_001 | Network Access | 🔴 Critical | HTTP requests, API calls | | DB_001 | Database | 🔴 Critical | SQL queries, table modifications | | FS_002 | File System Read | 🟡 Warning | Broad file/directory reading | | ENV_001 | Credentials | 🟡 Warning | Env variables, secrets, tokens | | PROC_001 | Process Mgmt | 🟡 Warning | Process spawning, signals | | GIT_001 | Source Control | 🟡 Warning | Git push, force push | | WEB_001 | Browser | 🔵 Info | Browser automation | | MEM_001 | Memory | 🔵 Info | Persistent data storage |

Recognized Servers

| Server | Tools | Risk | |---|---|---| | server-filesystem | 8 | 🔴 High | | server-puppeteer | 5 | 🔴 High | | server-postgres | 3 | 🔴 High | | server-fetch | 1 | 🔴 High | | server-github | 4 | 🟡 Medium | | server-slack | 2 | 🟡 Medium | | server-memory | 2 | 🔵 Low |


Install

# npx (no install)
npx mcp-overseer scan

# global
npm install -g mcp-overseer

# dev dependency
npm install --save-dev mcp-overseer

Requires Node.js 18+.


Config Discovery

| App | Path | |---|---| | Claude Desktop | ~/.config/claude/claude_desktop_config.json | | Cursor | ~/.cursor/mcp.json | | VS Code | ~/.vscode/mcp.json | | Windsurf | ~/.codeium/windsurf/mcp_config.json | | Cline | ~/.cline/mcp_settings.json | | Local | ./mcp.json or ./.mcp.json |

Or pass a custom path:

npx mcp-overseer scan --config /path/to/config.json

CI/CD

npx mcp-overseer scan --format json > report.json

Roadmap

  • [x] Security scanner with A-F grading
  • [x] Auto-discovery for 5+ clients
  • [x] Web dashboard
  • [x] Traffic monitoring
  • [x] JSON output
  • [ ] GitHub Action
  • [ ] MCP proxy mode for full traffic interception
  • [ ] Custom rule definitions
  • [ ] Vulnerability database for known packages
  • [ ] Slack/Discord alerts

Contributing

git clone https://github.com/panavinsingh/mcp-overseer.git
cd mcp-overseer
npm install
npm run dev scan
npm run build

See CONTRIBUTING.md.


License

MIT