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

@crediolabs/policy-builder-mcp

v0.5.2

Published

MCP server exposing the OZ policy-synth core (record_transaction + synthesize_policy) over stdio and Streamable HTTP transports.

Downloads

2,888

Readme

@crediolabs/policy-builder-mcp

MCP server exposing the OZ Policy Builder toolchain to agents. It wraps @crediolabs/policy-synth: an agent records a Soroban transaction, synthesises the minimal policy that permits exactly that flow, verifies and simulates it, and receives an unsigned install transaction for the user's wallet to sign.

Run

# stdio (default; Claude Desktop and local agents)
bunx @crediolabs/policy-builder-mcp

# Streamable HTTP on localhost:3001
bunx @crediolabs/policy-builder-mcp --http
bunx @crediolabs/policy-builder-mcp --http --http-port 8080

Claude Desktop / Claude Code configuration:

{
  "mcpServers": {
    "policy-builder": {
      "command": "bunx",
      "args": ["@crediolabs/policy-builder-mcp"]
    }
  }
}

Tools

| Tool | Purpose | | --- | --- | | record_transaction | Decode a transaction (hash or envelope XDR) into a RecordedTransaction. | | synthesize_policy | Synthesise a ProposedPolicy from a recording or a MandateSpec. | | simulate_policy | Replay a recording against a proposed predicate; run the deny-case battery. | | verify_policy | Static minimality check on a proposed predicate. | | install_policy | Build the unsigned add_context_rule transaction XDR. | | revoke_policy | Build the unsigned remove_context_rule transaction XDR. | | get_interpreter_info | Pinned interpreter address, grammar version and wasm sha256, optionally verified live. |

Failures come back as machine-readable tool errors (stable code, severity, retryable), never as transport-level throws, so an agent can branch on them.

Security model

  • Stateless, no key material. Install and revoke return unsigned XDR; the wallet signature is the user-confirmation step.
  • Loopback only by default. The HTTP transport refuses to bind a non-loopback host; it serves 127.0.0.1, ::1 or localhost unless the embedding caller explicitly opts out (allowExternalHost: true via the programmatic API), because the surface is unauthenticated by design.
  • See the architecture document for what the on-chain interpreter does and does not enforce, and the repository README for the contracts' audit status.

License

MIT