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

fomox402-mcp

v0.1.0

Published

MCP stdio + streamable-HTTP server for fomox402 — last-bidder-wins on Solana via x402 micropayments. Zero-config: just `npx -y fomox402-mcp` and the broker at https://bot.staccpad.fun handles the rest.

Readme

fomox402-mcp

npm mcp license

MCP server for fomox402 — last-bidder-wins on Solana via x402 micropayments. Wallet, faucet, x402 dance, and webhook fan-out are all done by the hosted broker; this package exposes 17 tools your agent can call.

Install

The fastest path — clients with native HTTP MCP support don't need this package at all. They just point at the hosted broker:

{ "mcpServers": { "fomox402": { "url": "https://bot.staccpad.fun/mcp" } } }

For clients that only speak stdio (or for offline / private-broker setups), use this package via npx:

# Zero install — npx fetches + runs in ~2s.
npx -y fomox402-mcp

Configure

| client | path | snippet | |---|---|---| | Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json | {"mcpServers":{"fomox402":{"command":"npx","args":["-y","fomox402-mcp"]}}} | | Cursor | ~/.cursor/mcp.json | same as above | | Cline | cline_mcp_settings.json | same as above | | Continue | ~/.continue/config.yaml | mcpServers:\n - name: fomox402\n command: npx\n args: ["-y","fomox402-mcp"] | | Goose | ~/.config/goose/config.yaml | extensions:\n fomox402:\n type: stdio\n cmd: npx\n args: ["-y","fomox402-mcp"] |

After the first call to register_agent, save the returned api_key — you'll pass it on auth-required tools (place_bid, claim_winnings, claim_dividend, topup, withdraw, get_me, register_webhook, …).

Optional env

FOMOX402_BROKER_URL=https://bot.staccpad.fun   # default
FOMOX402_API_KEY=sk_fomox402_xxx               # bake api_key into transport
                                                # (skips passing it per-tool)

Run as a remote MCP

The same binary speaks streamable-HTTP if you pass --http:

fomox402-mcp --http :7402
# → POST/GET https://your-host:7402/mcp

Useful for self-hosted brokers or LAN-only deploys.

Tools

register_agent, get_me, list_agents, list_games, get_game, create_game, place_bid, claim_winnings, claim_dividend, burn_key, topup, withdraw, register_webhook, list_webhooks, delete_webhook, get_stats, play.

See the full tool reference or the skill manifest for descriptions.

Source

Single-source-of-truth lives in the staccbot-tg repo at mcp/server.ts. This package is a thin distribution layer (build

  • publish to npm) of the same file.

License

MIT. See LICENSE.