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

arc-security-mcp

v0.5.1

Published

AI agent security: scan skills for 25 attack classes + runtime monitoring (EDR for AI agents). Real-time scanning, behavioral anomaly detection, session monitoring, exfiltration alerts. 1,316+ findings from 450+ audits. OWASP Agentic AI Top 10 mapped.

Readme

Arc Security MCP

AI agent security: scan skills for 25 attack classes + runtime monitoring (EDR for AI agents). Real-time scanning, behavioral anomaly detection, session monitoring, exfiltration alerts. 1,316+ findings from 450+ audits. OWASP Agentic AI Top 10 mapped.

Install

npm install -g arc-security-mcp

Configure

Add to your MCP client (Claude Code, Cursor, VS Code, etc.):

{
  "mcpServers": {
    "arc-security": {
      "command": "arc-security-mcp",
      "args": []
    }
  }
}

That's it. One command install, two-line config.

What It Does

Ask your AI assistant:

  • "Is the kubectl skill safe?"
  • "Scan the hello-world skill for security issues" (fetches from ClawHub in real-time)
  • "What attack classes exist in the agent ecosystem?"
  • "Monitor this session for suspicious activity" (NEW in v0.5)
  • "Set a security policy for this crypto skill" (NEW in v0.5)

Tools

Security Intelligence (9 tools)

| Tool | Description | |------|-------------| | check_skill_safety | Check any skill — curated DB first, then real-time ClawHub scan | | scan_skill_realtime | Fetch any skill from ClawHub and run full security scan | | analyze_skill_code | Static analysis with 25 regex patterns for dangerous code | | analyze_skill_intent | AI-powered semantic threat detection (free, $0/query) | | get_attack_class_info | Details on any of 25 documented attack classes | | get_owasp_mapping | Map our 25 attack classes to OWASP Agentic AI Top 10 | | list_dangerous_patterns | Browse the full pattern database | | get_threat_landscape | Current ecosystem threat statistics | | security_checklist | Category-specific security review checklist |

Runtime Monitoring — NEW in v0.5 (5 tools)

| Tool | Description | |------|-------------| | monitor_start | Start monitoring an AI agent session — tracks tool calls, file access, network activity | | monitor_event | Report a tool call/file access/network request for real-time risk assessment | | monitor_end | End monitoring and get a full session security report | | set_monitor_policy | Set behavioral rules for a skill (allow/deny lists, rate limits) | | get_session_alerts | Get all security alerts for a running session |

Runtime Monitoring Detection Rules

  • Sensitive file access — detects reads of .env, .ssh, credentials, wallet files, API keys
  • Exfiltration — flags requests to webhook.site, ngrok, requestbin, and other exfil endpoints
  • Dangerous shell commands — catches curl|sh, rm -rf, eval, crontab modification
  • Enumeration — detects rapid file system scanning (>5 reads in 60 seconds)
  • Capability escalation — flags tool calls outside a skill's defined policy
  • Rate limiting — configurable per-skill event rate limits
  • Data staging — detects sensitive read + network request chains (exfil pipelines)

What Makes This Different

Most MCP security tools scan for server misconfigurations. We scan for malicious skill behavior AND monitor runtime activity.

Our database comes from manually auditing 450+ real ClawHub skills across 40 rounds of scanning. We found:

  • 246+ CRITICAL findings (credential theft, RCE, fund theft)
  • 419+ HIGH findings (social engineering, identity manipulation)
  • 25 attack classes mapped to OWASP Agentic AI Top 10 (10/10 coverage)

v0.5: Runtime Monitoring — the first EDR (Endpoint Detection and Response) built specifically for AI agents. Monitor sessions in real-time, set behavioral policies, detect exfiltration chains.

v0.4: Real-time scanning — even skills NOT in our database get scanned. The server fetches source from ClawHub and runs pattern + intent analysis on the fly.

Examples of what we detect that regex scanners miss:

  • Skills that social engineer the LLM through SKILL.md instructions (zero code)
  • "Soul poisoning" — persistent identity manipulation via memory/config files
  • Anti-detection evasion (explicit instructions to bypass platform bot detection)
  • Agent-to-agent worm propagation mechanisms
  • Anti-safety training (skills that teach agents to suppress safety behaviors)
  • Bootstrap context injection — stored prompt injections returned on every session
  • Autonomous doxing pipelines — digital-to-physical targeting chains
  • Port masquerade — services hiding behind legitimate port numbers

Requirements

  • Node.js 18+
  • Python 3.10+ (for the analysis engine)
  • pip3 (auto-installs Python dependencies on first run)

SSE Mode

For web-based clients or remote access:

arc-security-mcp --sse

Our public SSE endpoint: https://arcself.com/mcp/sse

Links

License

MIT

Author

Arc Self — [email protected]