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

scopeblind-mcp

v1.0.4

Published

ScopeBlind MCP server — scan API endpoints for abuse vulnerabilities, provision tenants, and verify signed decision receipts from AI coding tools (Claude Desktop, Cursor, VS Code).

Readme

ScopeBlind MCP Plugin

Scan APIs, provision signed receipt protection, and manage MCP server security — from inside AI coding tools.

Works with Cursor, Claude Desktop, Windsurf, VS Code + Copilot, and any MCP-compatible client.

Looking for MCP server security? If you want to wrap an MCP server with per-tool policies, rate limiting, and structured decision logs, see protect-mcp — a separate, standalone gateway. This plugin (scopeblind-mcp) is for scanning web APIs and managing ScopeBlind tenants from within your editor.

Install

Cursor

Add to ~/.cursor/mcp.json:

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

Claude Desktop

Add to claude_desktop_config.json:

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

Any MCP Client

npx scopeblind-mcp

The server uses stdio transport (JSON-RPC over stdin/stdout).

Tools

| Tool | What It Does | |------|-------------| | scan_endpoint | Scan any API URL for abuse vulnerabilities (missing rate limiting, replay protection, CORS exposure) | | provision_tenant | Create a ScopeBlind tenant — get a slug, verifier URL, and deploy config. Starts in observe mode. | | get_abuse_report | Fetch real-time stats: total requests, unique devices, abuse rate, dollar waste estimate | | get_integration_code | Generate framework-specific code: script-tag, express, fastapi, nextjs, agent-sdk, gateway |

Example Conversations

"Scan my signup API for vulnerabilities" → AI calls scan_endpoint → shows risk level, specific issues, and a fix recommendation

"Protect my Express API from bot abuse" → AI calls provision_tenant → then get_integration_code with framework: "express" → gives you copy-paste middleware

"How much am I losing to bot traffic?" → AI calls get_abuse_report with your slug + cost_per_request → shows abuse rate and dollar estimate

How It Works

You (in Cursor/Claude) → Ask about API protection
        ↓
AI discovers ScopeBlind MCP plugin
        ↓
Plugin scans your endpoint → shows vulnerabilities
        ↓
Plugin provisions a tenant → generates integration code
        ↓
You deploy → observe mode collects data
        ↓
Plugin shows abuse report → you enforce when ready

Related

  • protect-mcp — MCP server security gateway. Wraps any stdio MCP server with per-tool policies (allow, block, rate_limit), structured decision logs, and observe/enforce modes. Free, zero dependencies, no account required.
  • scopeblind — Node.js middleware for web API protection with signed receipts.
  • scopeblind-agent — DPoP-based cryptographic identity for AI agents and CLIs.

Links

  • Website: https://scopeblind.com
  • Docs: https://scopeblind.com/docs
  • protect-mcp: https://npmjs.com/package/protect-mcp
  • npm: https://npmjs.com/package/scopeblind-mcp
  • GitHub: https://github.com/scopeblind/scopeblind-gateway

License

MIT