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

@tryengrave/mcp

v0.1.3

Published

Engrave MCP layer: tool definitions, remote-server core, and the interception proxy.

Readme

@tryengrave/mcp

The Model Context Protocol layer for Engrave — attach it to any agentic process and every tool call, input, and output is engraved into a tamper-evident, hash-linked trace. This is the differentiating piece: a black-box recorder for AI agents.

npm install @tryengrave/mcp

Why agents need this

When software takes autonomous action — calling tools, moving money, touching data — "trust me, here are the logs" isn't a defense. Regulators (EU AI Act Art. 12/19, NIST AI RMF, ISO/IEC 42001) increasingly require traceable, integrity-protected records. This package produces exactly that: an append-only, third-party-verifiable trace of what the agent saw, decided, and did.

What's inside

  • Tool definitionstools, callTool: the Engrave MCP tools (record, verify, proof, …) ready to expose to an agent.
  • Remote-server corehandleMcpMessage, PROTOCOL_VERSION: a transport-agnostic JSON-RPC handler you can mount behind streamable HTTP.
  • Interception proxy (@tryengrave/mcp/proxy) — sit transparently between an agent and any upstream MCP server, engraving every call with byte-fidelity while passing traffic through unchanged.
  • SchematoJsonSchema for tool input/output.

Usage

import { handleMcpMessage } from "@tryengrave/mcp"
import { Engrave } from "@tryengrave/client"

const client = new Engrave({ apiKey: "ek_live_…" })
const response = await handleMcpMessage(client, jsonRpcMessage)

Or wrap an existing MCP server with the CLI — no code changes to the agent:

engrave mcp proxy --upstream stdio:"your-mcp-server" --name your-server

Every intercepted call becomes a provable span in the agent's run trace, which anyone can later verify offline with @tryengrave/verify.


Part of Engrave — the black-box recorder for AI agents. · Agent audit docs · MIT