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

@vinaystwt/bondsman-mcp

v0.3.0

Published

MCP server for Bondsman on Casper. Tools for assurance design, canonical replay, quotes, receipts, reputation, deployments, and verifiers.

Readme

@vinaystwt/bondsman-mcp

An MCP server that exposes the Bondsman protocol to any Model Context Protocol client.

Bondsman is a notary for money on Casper. An autonomous agent must stake real capital before it can move money and loses it when it is wrong. This MCP server gives an external agent a stdio interface to inspect actions, design assurance manifests, replay the canonical proof, probe x402 quote requirements, check reputation, read verifiers, and verify receipts.

Install

npm install -g @vinaystwt/bondsman-mcp

Or run without installing:

npx @vinaystwt/bondsman-mcp

Configuration

The server talks to a running Bondsman backend over HTTP. Set the base URL with an environment variable:

export BONDSMAN_API_BASE=http://127.0.0.1:3001

Defaults to http://127.0.0.1:3001. The Bondsman backend is open source in the main repository.

Tools

Twelve tools are registered:

| Tool | Purpose | | ---- | ------- | | list_actions | Read-only live projection of bonded actions. | | get_action | Read-only detail for one action, including reasoning, events, transactions, explorer links. | | get_reputation | Read-only on-chain reputation projection for an agent address. | | get_deployments | Read-only network, chain, contract package hashes, and account roles. | | get_verifiers | Read-only fault classes and verifier status from the backend registry. | | verify_receipt | Read-only signed receipt verification for a completed action. | | get_assurance_templates | Design-only Assurance Studio templates and implementation status. | | design_assurance_policy | Design-only manifest generation. It does not pay, challenge, settle, or submit Casper transactions. | | quote_bonded_action | Paid HTTP quote surface. Without payment it returns x402 402 requirements and does not mutate protocol state. | | submit_bonded_action | Paid HTTP execution after settled quote plus payer submit authorization. Not a sponsored public mutation. | | replay_canonical_proof | Read-only canonical Action 27 replay with proof, receipt, and checks. | | check_canonical_quote | Read-only check that canonical Action 27 quote is consumed and not replayable. |

Use with Claude Code

Add to ~/.mcp/config.json:

{
  "mcpServers": {
    "bondsman": {
      "command": "npx",
      "args": ["-y", "@vinaystwt/bondsman-mcp"],
      "env": {
        "BONDSMAN_API_BASE": "http://127.0.0.1:3001"
      }
    }
  }
}

Example

See examples/watchdog.ts for a legacy local-only example. Production public challenge submission is no longer exposed through MCP; use the read-only and design-only tools above unless you have a paid quote and payer authorization for submit_bonded_action.

About Bondsman

  • Testnet frontend and demo: https://github.com/vinaystwt/bondsman
  • Casper testnet contracts: deployed
  • Assurance design is public and non-mutating. Paid quote submission uses real Casper x402 settlement when callers provide valid payment. Backend-sponsored public challenge and demo mutation routes are operator-only.

License

MIT