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

voulti-mcp

v0.1.0

Published

MCP server for Voulti — accept crypto payments from any AI agent. Create an invoice with one call, share the hosted checkout link, and confirm payment. USDC/USDT on Celo, Base, Arbitrum, Polygon and BSC; instant self-custody settlement; no API key needed.

Readme

voulti-mcp

MCP server for Voulti — accept crypto payments from any AI agent. Create an invoice with one call, share the hosted checkout link, and confirm payment. USDC, USDT and stablecoins on 5 networks (Celo, Base, Arbitrum, Polygon, BSC), instant self-custody settlement, 1% fee. No API key — all tools are free to call.

Install

Claude Code:

claude mcp add voulti -- npx -y voulti-mcp

Cursor / any MCP client (.mcp.json / mcp.json):

{
  "mcpServers": {
    "voulti": {
      "command": "npx",
      "args": ["-y", "voulti-mcp"],
      "env": {
        "VOULTI_COMMERCE_ID": "your-commerce-id"
      }
    }
  }
}

Configuration

| Env var | Required | Description | |---|---|---| | VOULTI_COMMERCE_ID | no | Default merchant id, so the agent doesn't pass it on every call. Get it at app.voulti.com → Receive Payments → Developers (self-service signup, ~1 minute). | | VOULTI_API_BASE | no | Default https://api.voulti.com. |

No secrets, no wallet, no API key: Voulti's integration API is public, and settlement goes straight to the merchant's own wallet.

Tools

| Tool | What it does | |---|---| | create_invoice | Invoice for a fixed amount (in the merchant's base currency) → hosted checkout link. Supports reference (your order id / client name) and custom expires_at (default 1 hour) | | get_invoice | Payment status: PendingPaid | Expired, with paid_tx_hash on-chain proof | | get_payment_link | The merchant's permanent pay-what-you-want page (never expires) |

Typical flow

  1. Human: "charge my client Andrés $150".
  2. create_invoice { amount_fiat: 150, reference: "andres-logo" } → send checkout_url to Andrés.
  3. Andrés pays with any wallet, in the stablecoin/network he prefers.
  4. get_invoice until status: "Paid" → funds are already in the merchant's wallet (minus 1%).

Full guide: voulti.com/skill.md · LLM index: voulti.com/llms.txt