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

@mcpverify/bridge

v0.1.2

Published

MCP verification bridge — transparent stdio/SSE proxy with cryptographic tool integrity checking, state commits, trace shapes, and computation receipts

Readme

@mcpverify/bridge

Transparent MCP proxy that verifies tool integrity between AI agents and MCP servers.

What it does

Sits between your AI agent and an upstream MCP provider as a transparent stdio/SSE proxy. Intercepts tools/list responses and verifies them against cryptographic commitments. If tools have been tampered with, the bridge warns or blocks depending on mode. All verification events are logged to a tamper-evident hash chain.

Features

  • Transparent proxy — stdio or SSE transport, zero config for the agent
  • Schema verification — intercepts tools/list and checks against signed commitments
  • Warn or strict mode — log tampering and continue, or block the tool entirely
  • Trace context — injects distributed trace IDs into tools/call requests
  • Trace shapes — learns structural patterns of tool calls for anomaly detection
  • Audit logging — every verification event written to a hash-chained log

Install

npm install @mcpverify/bridge

Usage

stdio bridge (wrap a local MCP server)

npx mcpverify-bridge --cmd "node server.js" --dir ./verify-data --mode warn

SSE bridge (wrap a remote MCP server)

npx mcpverify-bridge https://api.example.com/mcp --dir ./verify-data --mode strict

Claude Desktop config

{
  "mcpServers": {
    "my-server": {
      "command": "npx",
      "args": [
        "mcpverify-bridge",
        "--cmd", "node",
        "--args", "server.js",
        "--dir", "./verify-data",
        "--mode", "warn"
      ]
    }
  }
}

Options

| Flag | Description | |------|-------------| | --cmd <command> | Upstream server command (stdio mode) | | --args <a,b,c> | Comma-separated args for the command | | --env <K=V,K=V> | Extra environment variables | | --dir <path> | Directory for commitments, keys, and audit chain | | --mode <warn\|strict> | warn logs mismatches, strict blocks them | | --server-id <id> | Server identifier for registry lookups |

How it works

  1. Agent connects to the bridge via stdio
  2. Bridge connects to the upstream MCP server (stdio or SSE)
  3. On tools/list response, bridge verifies tool schemas against stored commitments
  4. On tools/call request, bridge injects trace context for distributed tracing
  5. All events logged to the tamper-evident audit chain

Learn more

mcpcerts.com

License

MIT