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-shark/mcp-shark

v1.7.2

Published

Security scanner for AI agent tools. Local static scan of MCP IDE configs (41 rules, toxic flow heuristics, AAuth visibility, auto-fix, tool pinning). Optional proxy + in-browser dashboard: traffic, findings, AAuth Explorer, YARA, Playground. Smart Scan o

Readme

npm version License: Non-Commercial

Dashboard at a glance

These captures are from the live dashboard with real captured traffic (dummy MCP or your own upstreams). Start with npx @mcp-shark/mcp-shark serve --open. Smart Scan is not shown below — it depends on an optional remote API token. MCP Playground appears once you have at least one MCP upstream configured (the Playground capture uses a demo server with tools loaded).

Live traffic capture

Every JSON-RPC frame between your IDE and each MCP upstream is captured with full headers, body, timing, and an AAuth posture chip. Filter by method, status, server, session, AAuth agent / mission / posture.

Traffic Capture

MCP Playground

Pick an upstream, load tools, prompts, and resources from that server, then call tools or read resources through the proxy — useful for validating behavior before it hits your IDE. The view below shows the tools list for a configured demo MCP.

MCP Playground

AAuth Explorer

Force-directed knowledge graph of every Agent / Mission / Resource / Signing algorithm / Access mode observed across captured traffic. Use Generate sample data for a quick demo graph, or capture real AAuth-shaped traffic through the proxy.

AAuth Explorer

Local Analysis

Offline rule-based scanner over captured traffic. The AAuth Posture card summarizes signed / aauth-aware / bearer / no-auth distribution; the Toxic flows (proxy traffic) panel infers cross-server pairings from observed tools/list responses. With packets already in the database, use Replay from DB (when no live MCP is attached) and then Analyse to populate findings — the view below is after that run.

Local Analysis

YARA Detection

Same Local Analysis tab: switch to YARA Detection for the traffic rule engine — engine status, eight predefined rules (toggle, edit, delete), and New Rule for your own patterns. When the native yara module is not installed, scans still run using the built-in regex fallback (see docs/local-analysis.md).

YARA Detection

New Rule opens the editor with a starter template (meta, strings, and condition). Edit the rule text, then Save Rule to add it as a custom pattern alongside the built-ins.

Adding a custom YARA rule

Server setup

Auto-detects Cursor / Codex / Windsurf configs, converts them to mcp-shark format, and patches the IDE to route through the proxy on start.

Server Setup

Why mcp-shark?

MCP setups commonly mix secrets, broad tool access, and multiple servers in one agent context; issues are easy to miss without checking configs. See the OWASP MCP Top 10 for a structured view of what can go wrong.

mcp-shark runs on your machine — no API keys or hosted scan backend. Install with npx and review findings locally.

Toxic flow analysis

The scanner models how MCP servers compose in the agent context and flags risky capability pairings (for example, secret access combined with external egress):

  ▲ HIGH  notify-server → repo-server
    Untrusted content in one tool’s channel could lead the agent to
    take a destructive action in another (e.g. push code).

  ▲ MEDIUM  browser-server → filesystem-server
    Web-sourced context could be chained into local file operations.

Use mcp-shark findings as input to your own threat model, not as a complete audit.

Features

| Feature | Description | |---------|-------------| | 41 security rules | OWASP MCP Top 10 + Agentic Security Initiative + AAuth visibility + general checks | | Toxic flow analysis | Cross-server attack path detection from tool capability heuristics | | Attack walkthroughs | Step-by-step exploit narratives from findings | | Shark Score | Transparent security posture score (0-100, A-F) | | Auto-fix | --fix replaces hardcoded secrets, fixes permissions, with backup/undo | | Tool pinning | Git-committable .mcp-shark.lock with SHA-256 hashes | | 15 IDE detection | Cursor, Claude Desktop, VS Code, Windsurf, Codex, Amp, Kiro, and more | | 4 output formats | Terminal, JSON, SARIF v2.1.0, HTML | | Health checks | doctor command for environment validation | | Server inventory | list command shows all servers in a table | | Watch mode | Live re-scan on config changes | | HTML reports | Self-contained offline security reports | | Downloadable rule packs | Rule pack registry (manifest + JSON); update-rules syncs declarative packs and toxic-flow heuristics — zero code changes | | YAML rules | Per-project custom rules via .mcp-shark/rules/ | | GitHub Action | CI/CD integration with SARIF upload | | Interactive TUI | lazygit-style terminal UI for scan, fix, and server browsing | | Browser dashboard | Live traffic, Local Analysis, YARA rules, AAuth Explorer, Playground, setup, and logs | | Proxy toxic flows | Local Analysis panel + GET/POST /api/security/traffic-toxic-flows* infer cross-server pairs from captured tools/list traffic (see docs/local-analysis.md) | | YARA-style traffic rules | In Local Analysis → YARA Detection, enable or edit built-in pattern rules, add custom rules, and inspect engine status (native YARA when available, regex fallback otherwise) | | Local static scans | No hosted scan backend; update-rules is opt-in HTTPS to the registry |

Quick Start

# Scan your MCP setup (default command)
npx @mcp-shark/mcp-shark

# Auto-fix issues (with interactive confirmation)
npx @mcp-shark/mcp-shark scan --fix

# See full attack chain narratives
npx @mcp-shark/mcp-shark scan --walkthrough

# Pin tool definitions (lockfile) to spot unexpected changes
npx @mcp-shark/mcp-shark lock

# Check environment health
npx @mcp-shark/mcp-shark doctor

# Show all detected servers
npx @mcp-shark/mcp-shark list

# Download latest rule packs (OWASP, Agentic Security)
npx @mcp-shark/mcp-shark update-rules

# Watch for config changes
npx @mcp-shark/mcp-shark watch

# Interactive terminal UI
npx @mcp-shark/mcp-shark tui

# Generate HTML report
npx @mcp-shark/mcp-shark scan --format html --output report.html

# CI mode (exits 1 on critical/high)
npx @mcp-shark/mcp-shark scan --ci --format sarif

Commands

| Command | Description | |---------|-------------| | scan (default) | Run security scan with 41 rules | | lock | Create .mcp-shark.lock file | | lock --verify | Verify current state matches lockfile | | diff | Show tool definition changes since last lock | | doctor | Run environment health checks | | list | Show inventory of all detected servers (--format json supported) | | update-rules | Download latest rule packs from remote registry | | watch | Watch config files and re-scan on changes | | tui | Interactive terminal UI (lazygit-style) | | serve | Start the local proxy and monitoring dashboard |

CLI flags

scan (default command)

| Flag | Description | |------|-------------| | --fix | Auto-fix issues (interactive confirmation) | | --fix --yes | Auto-fix without prompting | | --fix --undo | Restore backups from previous fix | | --walkthrough | Show full attack chain narratives | | --ci | CI mode: exit code 1 on critical/high | | --format <fmt> | Output: terminal, json, sarif, html | | --output <path> | Write report to file (for html format) | | --strict | Count advisory findings in score | | --ide <name> | Scan specific IDE only | | --rules <path> | Load custom YAML rules from directory | | --refresh-rules | Fetch rule packs from registry before scan (HTTPS; see rule registry config) |

Other commands

| Command | Flags / notes | |---------|----------------| | list | --format terminal or --format json | | update-rules | --source <url> for a custom pack manifest | | serve | --open / -o to open the browser | | lock | --verify to check lockfile match |

How scan works

The CLI scan command is static: it reads MCP entries from your IDE config files (see Supported IDEs and optional project ./mcp.json) and analyzes what is written there. It does not connect to running MCP servers or call tools/list.

  • Always scanned: each server block’s command, args, env, url, and related fields (secrets in env, unsafe spawn patterns, HTTP URLs, etc.).
  • Tool-level rules (declarative packs, command-injection heuristics, toxic-flow classification from tool names, etc.) run only when that server entry includes an embedded tools array (name, description, schemas). If tools is omitted—typical for command/stdio-only configs—the scan may report 0 tools checked even though Cursor is running the server fine.

To exercise full rule coverage in CI or test repos, either embed tool metadata in the same JSON your scanner reads, or use a project-local mcp.json harness (see --ide Project).

What it covers

mcp-shark is aimed at config and metadata you already have on disk (plus optional local monitoring). It helps catch common misconfigurations and risky combinations; treat output as input to your own review, not a guarantee nothing is wrong.

| Area | Notes | |------|--------| | Install / run | Node.js 20+; npx @mcp-shark/mcp-shark | | Security rules | 41 checks — 30 declarative JSON packs, 11 JS where heuristics need code | | Toxic flow analysis | Heuristic cross-server paths; quality depends on embedded tools / classifications | | Attack walkthroughs | Narratives derived from findings | | Auto-fix | Supported for a subset of issues; confirm changes in your repo | | Tool pinning | .mcp-shark.lock with SHA-256 hashes | | Live traffic | Dashboard (serve) for monitoring; separate from static scan | | Custom rules | YAML under .mcp-shark/rules/ and JSON rule packs | | Findings & score | confirmed / advisory tiers plus Shark Score (0–100, A–F) | | IDE configs | 15 built-in paths + project-local mcp.json variants — see Supported IDEs | | Output | Terminal, JSON, SARIF v2.1.0, HTML | | Health | doctor for environment checks | | CI | scan --ci and optional GitHub Action | | Watch | Re-scan when config files change | | Rule updates | update-rules (optional HTTPS fetch; static scan works without it) |

Rule Extensibility

Downloadable Rule Packs (JSON)

The canonical registry (manifest, pack files, validation CI, and schema notes) lives in mcp-shark/rule-packs. The npm package embeds copies; update-rules pulls the same artifacts into .mcp-shark/rule-packs/.

mcp-shark ships with 30 declarative rules as JSON packs (OWASP MCP, Agentic Security Initiative, General Security, AAuth Visibility), plus a toxic-flow-heuristics pack (toxic_flow_rules for cross-server composition). New vulnerability catalogs can be added as .json files — no JavaScript, no code changes.

# Fetch latest rule packs from the registry
npx @mcp-shark/mcp-shark update-rules

# Use a custom/enterprise registry
npx @mcp-shark/mcp-shark update-rules --source https://internal.corp/rules/manifest.json

Downloaded packs are cached in .mcp-shark/rule-packs/ and merged with built-in rules on every scan.

{
  "id": "owasp-mcp-2027",
  "name": "OWASP MCP Top 10 (2027)",
  "version": "1.0.0",
  "rules": [
    {
      "id": "MCP01-token-mismanagement",
      "name": "Token Mismanagement",
      "severity": "critical",
      "framework": "OWASP-MCP",
      "description": "Detects hardcoded tokens in MCP configs",
      "patterns": [
        { "regex": "(api[_-]?key|token)\\s*[:=]", "flags": "i", "label": "API key pattern" }
      ],
      "scope": ["tool", "prompt", "resource", "packet"],
      "exclude_patterns": [{ "regex": "\\$\\{|process\\.env" }],
      "match_mode": "any"
    }
  ]
}

Custom YAML Rules (per-project)

Create .mcp-shark/rules/ in your project to add lightweight custom rules:

# .mcp-shark/rules/no-production-keys.yaml
id: custom-no-prod-keys
name: No Production Keys
severity: critical
description: Detects production API keys in MCP configs
match:
  env_pattern: "^(PROD_|PRODUCTION_)"
  value_pattern: "^sk-live|^pk-live"
message: "Production key detected in {key} — use staging keys for development"

Both YAML rules and JSON packs are loaded automatically on scan. Share them with your team by committing the folder.

User-Overridable Data (.mcp-shark/)

Every built-in data source can be extended or overridden through YAML files in your project root:

| File | Overrides | Format | |------|-----------|--------| | .mcp-shark/secrets.yaml | Secret detection patterns | List of { name, regex } | | .mcp-shark/classifications.yaml | Server/tool capability tags | Nested map server: { capability: true } | | .mcp-shark/flows.yaml | Toxic flow rules | List of { source_cap, target_cap, risk, ... } | | .mcp-shark/rules/*.yaml | Custom per-project rules | See YAML Rules above | | .mcp-shark/rule-packs/*.json | Override or add declarative packs | See JSON Packs above |

User data is merged with built-in data at scan time. No rebuild required.

GitHub Action

# .github/workflows/mcp-security.yml
name: MCP Security Scan
on: [push, pull_request]
jobs:
  scan:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: mcp-shark/scan-action@v1
        with:
          format: sarif
          fail-on: high
      - uses: github/codeql-action/upload-sarif@v3
        if: always()
        with:
          sarif_file: mcp-shark-results.sarif

Supported IDEs

| IDE | Config Path | Status | |-----|-------------|--------| | Cursor | ~/.cursor/mcp.json | ✅ | | Claude Desktop | ~/Library/.../claude_desktop_config.json | ✅ | | Claude Code | ~/.claude.json | ✅ | | VS Code | ~/.vscode/mcp.json | ✅ | | Windsurf | ~/.codeium/windsurf/mcp_config.json | ✅ | | Codex | ~/.codex/config.toml | ✅ | | Gemini CLI | ~/.gemini/settings.json | ✅ | | Continue | ~/.continue/config.json | ✅ | | Cline | ~/.../saoudrizwan.claude-dev/.../cline_mcp_settings.json | ✅ | | Amp | ~/.amp/mcp.json | ✅ | | Kiro | ~/.kiro/mcp.json | ✅ | | Zed | ~/.config/zed/settings.json | ✅ | | Augment | ~/.augment/mcp.json | ✅ | | Roo Code | ~/.roo-code/mcp.json | ✅ | | Project (local) | ./mcp.json, ./.mcp.json, ./.mcp/config.json | ✅ |

Security Rules (41)

OWASP MCP Top 10

| ID | Rule | Severity | Source | |----|------|----------|--------| | MCP01 | Token Mismanagement | Critical | declarative | | MCP02 | Scope Creep | High | declarative | | MCP03 | Tool Poisoning | Critical | declarative | | MCP04 | Supply Chain | High | declarative | | MCP05 | Command Injection | Critical | JS plugin | | MCP06 | Prompt Injection | High | declarative | | MCP07 | Insufficient Auth | High | declarative | | MCP08 | Lack of Audit | Medium | declarative | | MCP09 | Shadow Servers | High | declarative | | MCP10 | Context Injection | High | declarative |

Agentic Security Initiative (ASI)

| ID | Rule | Severity | Source | |----|------|----------|--------| | ASI01 | Goal Hijack | Critical | declarative | | ASI02 | Tool Misuse | High | declarative | | ASI03 | Identity Abuse | High | declarative | | ASI04 | Supply Chain | High | declarative | | ASI05 | Remote Code Execution | Critical | JS plugin | | ASI06 | Memory Poisoning | High | declarative | | ASI07 | Insecure Communication | Medium | declarative | | ASI08 | Cascading Failures | Medium | declarative | | ASI09 | Trust Exploitation | High | declarative | | ASI10 | Rogue Agent | Critical | declarative |

AAuth Visibility (informational)

| ID | Description | Severity | |----|-------------|----------| | aauth-agent-identity-observed | aauth:<local>@<domain> agent identity in tool/prompt/resource/packet | Low | | aauth-jwks-discovery-url | URLs containing /.well-known/aauth or /jwks | Low | | aauth-http-message-signature-observed | RFC 9421 Signature-Input / Signature headers in captured traffic | Low | | aauth-mission-context-observed | AAuth-Mission headers in captured traffic | Low | | aauth-requirement-challenge-observed | AAuth-Requirement response headers (resource asking for AAuth) | Low | | aauth-bearer-token-coexists-with-aauth | Same packet has both Bearer token and AAuth signature | Medium |

General Security

| Rule | Severity | |------|----------| | Hardcoded Secrets | Critical | | Command Injection | Critical | | Cross-Server Shadowing | High | | Tool Name Ambiguity | Medium | | DNS Rebinding | High | | ANSI Escape Sequences | Medium | | Config File Permissions | Medium | | Missing Containment | High | | Duplicate Tool Names | Medium | | Shell/Env Injection | High | | Excessive Permissions | High | | Unsafe Default Config | Medium | | Path Traversal | High | | Sensitive Data Exposure | High | | Insecure Transport | Medium |

Browser dashboard

MCP Shark ships an in-browser dashboard on the local proxy for real-time MCP traffic, analysis, and exploration:

npx @mcp-shark/mcp-shark serve --open

Same as the older shortcut (no serve subcommand):

npx @mcp-shark/mcp-shark --open

The dashboard provides:

  • Multi-server aggregation and real-time traffic capture (filters, export, AAuth posture chips)
  • MCP Playground — call tools, prompts, and resources through the proxy against a selected upstream
  • Local Analysis — OWASP-style static scan over captured traffic; YARA Detection for traffic pattern rules (native engine when installed, regex fallback otherwise)
  • AAuth Explorer — graph of Agent / Mission / Resource / signing / access signals observed in traffic
  • Smart Scan — optional AI-backed scan (requires a configured API token)
  • In-app API docs, server setup, logs, and graceful shutdown

Zero-touch first boot

The dashboard bootstraps itself the first time you launch it on a new machine — no Setup wizard click required:

  1. If ~/.mcp-shark/mcps.json already declares upstreams (e.g. from a previous run, hand-edit, or testbed:up), the proxy starts directly with that config.
  2. Otherwise, on a brand-new install (no ~/.mcp-shark at all), MCP Shark scans for a real editor MCP config (~/.cursor/mcp.json, ~/.codeium/windsurf/mcp_config.json, ~/.codex/config.toml). If one is found with actual upstreams, it auto-imports them, writes ~/.mcp-shark/mcps.json, starts the proxy, and patches the editor config so the editor routes through the proxy.
  3. If neither path applies, the UI starts in monitoring-only mode and the Setup panel is still available for manual configuration.

To re-trigger first-boot behavior on a machine, remove ~/.mcp-shark/ and restart the UI.

Architecture

┌────────────────────────────────────────────────────┐
│  CLI (Commander.js)                                │
│  scan · lock · diff · doctor · list · watch · tui  │
│  update-rules · serve                              │
├──────────────┬──────────────┬──────────────────────┤
│  ConfigScanner│  ScanService  │  StaticRulesService  │
│  15 IDEs      │  orchestrator │  41 rules            │
├──────────────┴──────────────┴──────────────────────┤
│  Data layer (JSON + user YAML/JSON overrides)      │
│  ┌────────────┬──────────────┬───────────────────┐ │
│  │ rule-packs │ secret-      │ tool-             │ │
│  │ (30 rules) │ patterns.json│ classifications   │ │
│  ├────────────┼──────────────┼───────────────────┤ │
│  │ toxic-flow │ rule-        │ .mcp-shark/*.yaml │ │
│  │ rules.json │ sources.json │ (user overrides)  │ │
│  └────────────┴──────────────┴───────────────────┘ │
├────────────────────────────────────────────────────┤
│  JS plugins (11 rules needing algorithmic logic)   │
│  + DeclarativeRuleEngine (30 pattern-based rules)  │
└────────────────────────────────────────────────────┘

Design principles:

  • Data-first — Declarative rules, secret patterns, tool classifications, and toxic-flow defaults ship as JSON; 30 of 41 rules are pattern packs you can extend or override without forking those definitions.
  • User-overridable — Built-in data can be extended via .mcp-shark/*.yaml (and JSON pack drops) as documented above.
  • Hybrid rule engine — The other 11 rules are JS plugins where heuristics need code. Both sources are merged at scan time.
  • Zero-config scanningnpx and go. Auto-detects the IDE paths below plus project-local mcp.json variants.

Documentation

Requirements

  • Node.js: 20.0.0 or higher
  • OS: macOS, Windows, or Linux

License

Source-Available Non-Commercial License

  • ✅ View, fork, modify, run for personal, educational, or internal company use
  • ❌ Sell, resell, or integrate into paid products/services without written permission

See LICENSE for full terms.

CLI demo

Same one-liner as Quick Start (default scan). Terminal output depends on your config:

npx @mcp-shark/mcp-shark

mcp-shark demo

Support