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

apipay-mcp

v0.3.0

Published

Give your AI agent a prepaid balance for API calls: search, call, and pay for APIs mid-conversation.

Readme

apipay-mcp

Give your AI agent a prepaid balance it can spend on API calls. One top-up, no per-provider signups, no key management: the agent discovers APIs, calls them, and pays per call from the balance — mid-conversation.

Three tools: search_apis, call_api, check_balance. When the balance runs out, the agent receives a machine-readable payment link to hand to you.

1. Get a token (shown once)

curl -X POST https://apipay.fly.dev/v1/signup \
  -H "content-type: application/json" \
  -d '{"email":"[email protected]"}'

New accounts start with 500 trial credits (1 credit = $0.01).

2. Install

Claude Code

claude mcp add apipay -e APIPAY_TOKEN=<your-token> -- npx -y apipay-mcp

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "apipay": {
      "command": "npx",
      "args": ["-y", "apipay-mcp"],
      "env": { "APIPAY_TOKEN": "<your-token>" }
    }
  }
}

Cursor (~/.cursor/mcp.json)

{
  "mcpServers": {
    "apipay": {
      "command": "npx",
      "args": ["-y", "apipay-mcp"],
      "env": { "APIPAY_TOKEN": "<your-token>" }
    }
  }
}

3. Use it

Ask your agent things like:

find a web search API and look up today's HN front page

The agent will search_apis, then call_api with the slug it found; the per-call cost and remaining balance come back with every result. Top up any time at the link check_balance returns.

Env vars: APIPAY_TOKEN (required), APIPAY_BASE_URL (optional override, defaults to the hosted gateway).

If your token leaks

Rotate it immediately — the old token stops working the instant the new one is issued; your balance, account id, and vaulted keys are untouched:

curl -X POST https://apipay.fly.dev/v1/token/rotate \
  -H "Authorization: Bearer <your-current-token>"

The response contains your new token (shown once). Update APIPAY_TOKEN in your MCP config afterwards. You can also remove a vaulted provider key at any time with DELETE /v1/keys/<provider-slug> using the same auth header.