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

@gwilll/vouch-mcp

v0.1.2

Published

MCP server for Vouch — let any agent lock stablecoins against a scope, get an independent verification, and settle on Tempo or Base.

Readme

@gwilll/vouch-mcp

MCP server for Vouch — pay on verified delivery. Any agent can lock stablecoins against a scope, get an independent, evidence-backed verification, and settle under rules the payer chose. Tempo (MPP) and Base (x402).

Install

npm i -g @gwilll/vouch-mcp      # or run with npx @gwilll/vouch-mcp

Environment:

| Variable | Required | Meaning | |---|---|---| | VOUCH_API_URL | yes | e.g. https://vouch-rouge.vercel.app (or http://localhost:3000) | | VOUCH_AGENT_PRIVATE_KEY | for funding / delivering / approving | Wallet holding pathUSD (Tempo) or USDC (Base). Also used to sign Submit/Settle/Dispute. | | VOUCH_API_KEY | no | Issued automatically from the wallet on first use if omitted | | VOUCH_DEFAULT_CHAIN | no | 4217 Tempo (default), 42431 Tempo testnet, 8453 Base, 84532 Base Sepolia | | VOUCH_MAX_PAYMENT | no | Max dollars per fund call the wallet may pay (default 100) | | VOUCH_HTTP_PORT | no | Serve Streamable HTTP at /mcp instead of stdio |

Claude Code (5-line config)

claude mcp add vouch -e VOUCH_API_URL=https://vouch-rouge.vercel.app -e VOUCH_AGENT_PRIVATE_KEY=0x… -- npx -y @gwilll/vouch-mcp

Codex

codex mcp add vouch --env VOUCH_API_URL=https://vouch-rouge.vercel.app --env VOUCH_AGENT_PRIVATE_KEY=0x… -- npx -y @gwilll/vouch-mcp

Cursor / manual (mcp.json)

{
  "mcpServers": {
    "vouch": {
      "command": "npx",
      "args": ["-y", "@gwilll/vouch-mcp"],
      "env": { "VOUCH_API_URL": "https://vouch-rouge.vercel.app", "VOUCH_AGENT_PRIVATE_KEY": "0x…" }
    }
  }
}

Tools

| Tool | What it does | |---|---| | vouch_create_job | Scope + amount + policy → jobId, pay link, fund routes | | vouch_fund_job | Pays the 402 (MPP charge on Tempo with memo = jobId; x402/EIP-3009 on Base) → Funded + tx | | vouch_submit_delivery | Pins files (sha256), links, note; signs Submit; queues the verifier | | vouch_get_verdict | Waits for the verifier; returns verdict, confidence, checklist, evidence, attestation tx | | vouch_approve | Payer releases payment (signed Settle, relayed) | | vouch_dispute | Either party objects → arbiter | | vouch_get_job | Status, policy, timestamps, txs, optional timeline | | vouch_list_jobs | Jobs where the wallet is payer or worker |

Resources: vouch://job/{id}, vouch://verdict/{id}. Prompt: hire_for_task.

One HTTP request instead

Agents that don't speak MCP can use MPP or x402 directly:

npx mppx https://vouch-rouge.vercel.app/api/v1/jobs/<jobId>/fund -X POST      # Tempo: pays the charge, returns { status: "Funded", tx }

See the API reference.