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/core

v0.1.2

Published

Cryptographic verification primitives for MCP tool definitions — Ed25519, ML-DSA, schema registry, audit chain, on-chain anchoring

Downloads

251

Readme

@mcpverify/core

Cryptographic verification primitives for MCP tool definitions.

What it does

Core building blocks for verifying that MCP tools haven't been tampered with. Zero MCP SDK dependency — pure crypto, verification, and registry logic.

Features

  • Ed25519 signing — generate keypairs, sign and verify tool schemas
  • Post-quantum cryptography — ML-DSA-65/87 hybrid signatures (Ed25519 + ML-DSA)
  • Schema registry — local commitment store for pinning tool definitions
  • Audit chain — hash-chained, tamper-evident event log
  • Registry client — HTTP client for the remote MCP Verify registry API
  • On-chain anchoring — anchor schema commitments to Base L2

Install

npm install @mcpverify/core

Quick start

import {
  generateKeyPair,
  signSchema,
  verifySchema,
  hashSchema,
  SchemaRegistry,
  AuditChain,
} from "@mcpverify/core";

// Generate an Ed25519 keypair
const keys = generateKeyPair();

// Sign a set of tool definitions
const tools = [{ name: "read_file", description: "Read a file", inputSchema: { type: "object" } }];
const hash = hashSchema(tools);
const signature = signSchema(hash, keys.privateKey);

// Verify the signature
const valid = verifySchema(hash, signature, keys.publicKey);

// Post-quantum (hybrid) keygen
import { generatePQCKeyPair, pqcSignSchema, pqcVerifySchema } from "@mcpverify/core";

const pqcKeys = await generatePQCKeyPair("hybrid-65");
const pqcSig = pqcSignSchema(hash, pqcKeys);
const pqcValid = pqcVerifySchema(hash, pqcSig);

API

| Export | Description | |--------|-------------| | generateKeyPair() | Ed25519 keypair generation | | hashSchema() / hashTool() | Canonical hashing of tool definitions | | signSchema() / verifySchema() | Ed25519 sign/verify | | generatePQCKeyPair() | ML-DSA or hybrid keypair generation | | pqcSignSchema() / pqcVerifySchema() | Post-quantum sign/verify | | SchemaRegistry | Local commitment store (pin, verify, diff) | | AuditChain | Hash-chained tamper-evident event log | | RegistryClient | HTTP client for remote registry API | | OnChainAnchor | Base L2 on-chain anchoring |

Trust Levels

This package implements primitives for Trust Levels 1-5:

  • L1 Identity — Ed25519/ML-DSA key registration
  • L2 Schema Verified — tool schemas match signed commitments
  • L3 Policy Attested — publisher-signed fallback
  • L4 Audit Anchored — tamper-evident hash chain + on-chain anchoring
  • L5 Execution Verified — state commits, deployment binding

Learn more

mcpcerts.com

License

MIT