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

@slippay/mcp

v0.2.0

Published

Give your agent's checkout a limit it can prove. SlipPay MCP server: pay, re-verify the bound, check status.

Readme

@slippay/mcp

Give your agent's checkout a limit it can prove.

One tool to let an AI agent pay. One tool to re-verify the limit it can't break — locally, offline, in seconds. SlipPay runs on Stellar/Soroban: settlement in ~5s for a fraction of a cent, and the agent's wallet enforces a machine-proved spending bound on-chain.

Most agent-checkout tools gate spend with a configured guard — "abort if the total drifts more than 5%." That's a number someone typed. SlipPay's bound is a theorem, and slippay_verify hands it to you as an object you re-check yourself — no install, no trust.

Install

// Claude Desktop / any MCP client — mcpServers config
{
  "mcpServers": {
    "slippay": {
      "command": "npx",
      "args": ["-y", "@slippay/mcp"],
      "env": {
        "SLIPPAY_API_KEY": "sk_live_..."   // for slippay_pay / slippay_status
      }
    }
  }
}

slippay_verify needs no key and no network — it works the moment the server loads.

Tools

slippay_verify · the one that matters

Re-verify a SlipPay proof-carrying certificate against the agent spec it covers. Returns:

  • the spec ↔ certificate SHA-256 binding (tamper-evidence — change a byte, it goes red),
  • structural coherence of the certificate,
  • the exact SMT-LIB proof obligations the compiler discharged (copy-runnable in any z3).

Call it before trusting any counterparty agent's claimed limit. Nothing is sent anywhere.

slippay_verify(certificate: <cert JSON>, spec: <the .axl spec>)

slippay_pay

Send a payment from your SlipPay agent wallet. Executes only if it stays within the proved per-transaction and sliding-window limits.

slippay_pay(recipient: "G…", amount: "0.50", asset: "USDC", memo?: "order-123")

slippay_status

Look up a payment by reference / transaction hash. Returns settlement status and the on-chain link.

slippay_status(reference: "<tx hash>")

Env

| var | default | used by | |---|---|---| | SLIPPAY_API_KEY | — | slippay_pay, slippay_status | | SLIPPAY_API_BASE | https://api.slippay.cc/api/v1 | slippay_pay, slippay_status |

Why a proved bound

A configured guard fails open: misconfigure it, or let an attacker influence the inputs it reads, and the cap is whatever the runtime says it is. A proved bound holds for every reachable state of the contract — the proof is over the state machine, not over one execution. slippay_verify is what lets a third party confirm that without taking our word for it. The day a config-guard competitor ships a real proof, they've conceded their guard was never enough.

Re-verify in the browser too: app.slippay.cc/verify.


Built on Stellar · proofs discharged by z3 · part of SlipPay.