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

@opensyber/mcp

v0.1.0

Published

MCP server for OpenSyber — AI agent security monitoring, dependency scanning, and threat intelligence

Readme

@opensyber/mcp

MCP (Model Context Protocol) server for OpenSyber. Gives AI agents like Claude Desktop, Cursor, and Claude Code direct access to security monitoring, dependency scanning, and threat intelligence.

Installation

npm install @opensyber/mcp
# or
pnpm add @opensyber/mcp

Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "opensyber": {
      "command": "npx",
      "args": ["-y", "@opensyber/mcp"]
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "opensyber": {
      "command": "npx",
      "args": ["-y", "@opensyber/mcp"]
    }
  }
}

Claude Code

claude mcp add opensyber -- npx -y @opensyber/mcp

Available Tools

opensyber_scan_dependency

Check if an npm package is safe to install. Returns a safety verdict (safe / suspicious / malicious) with reasons and known CVEs.

Parameters:

  • package (required) — npm package name (e.g. "lodash")
  • version (optional) — specific version to check (e.g. "4.17.21")

Example prompt: "Is the event-stream npm package safe to use?"

opensyber_check_security

Get a security score for a project. Returns a breakdown across 8 categories: dependencies, secrets, authentication, input validation, encryption, logging, access control, and infrastructure.

Parameters:

  • projectPath (optional) — absolute path to the project root

Example prompt: "Run a security check on my project."

opensyber_query_threats

Get current AI agent threat intelligence. Returns recent threats including prompt injection, supply chain attacks, and model exfiltration attempts.

Parameters:

  • severity (optional) — minimum severity: "critical", "high", or "medium"

Example prompt: "What are the latest critical threats targeting AI agents?"

opensyber_list_skills

Browse the OpenSyber audited skill marketplace. Lists available security skills that agents can install.

Parameters:

  • category (optional) — filter by "monitoring", "scanning", "compliance", "networking", or "infrastructure"

Example prompt: "Show me available security scanning skills."

opensyber_protect

Generate a security configuration for a web framework. Returns integration code with TokenForge device binding, rate limiting, CORS, and CSP headers.

Parameters:

  • framework (required) — "express", "hono", "nextjs", or "fastify"

Example prompt: "Generate security config for my Hono API."

Development

# Run locally
pnpm dev

# Build
pnpm build

# Test with MCP Inspector
npx @modelcontextprotocol/inspector dist/index.js

License

MIT