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

wallie-mcp

v0.7.1

Published

Wallie MCP server — give your MCP client a spending allowance. Pay any x402 API (Base or Solana, exact or upto) inside hard policy rails, over five stdio tools.

Readme

Wallie MCP

A spending allowance for your MCP client. Point Claude Desktop, an agent framework — anything that speaks the Model Context Protocol — at wallie-mcp, and it pays any x402-priced API on its own, inside hard limits you set, with a kill switch and a receipt for every cent.

wallie-mcp serves allowance-kit's runtime over stdio. It binds one agent, resolved from the state directory exactly as the CLI resolves it: a fresh directory is practice money, a directory you have marked live (with AGENT_PRIVATE_KEY set) settles real USDC on Base or Solana.

export ALLOWANCE_STATE_DIR=.allowance   # optional, this is the default
npx [email protected]                    # speaks MCP over stdio

In a client config, e.g. claude_desktop_config.json:

{
  "mcpServers": {
    "wallie": { "command": "npx", "args": ["--yes", "[email protected]"], "env": { "ALLOWANCE_STATE_DIR": ".allowance" } }
  }
}

Five tools: pay_fetch, get_budget, list_channels, decide_approval, and reclaim_channel. pay_fetch chooses exact or upto per the seller's offer; a refused payment comes back as a blocked reason in plain language, never an exception.

The package includes the MCP SDK and the Base and Solana signing libraries, so a fresh npx installation can resolve the live runtime's optional peers. The core allowance-kit package keeps those peers optional for SDK users.

decide_approval is administrative authority. A client given this tool can approve its own queued requests. Only expose it to a trusted client; it is not a separate human authentication boundary. Spending that bypasses Wallie is outside its allowance controls.

The same surface is importable from the SDK:

import { createMcpServer, runMcpStdio } from "wallie-mcp"; // or from "allowance-kit/mcp"

Full documentation, the changelog, and the source live in the allowance-kit repository.