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

nexusx

v0.1.0

Published

NexusX CLI — deploy and monetize APIs on the x402 agentic marketplace

Readme

nexusx

Deploy and monetize APIs on the NexusX agentic marketplace — the x402 pay-per-call network for AI agents.

npx nexusx deploy --spec ./openapi.json --floor 0.001 --payout 0xYourAddress

What it does

NexusX turns any API into a monetized MCP tool that AI agents (Claude, GPT, etc.) can discover, call, and pay for autonomously in USDC on Base L2. No subscriptions. No API key management. Payments happen on-chain via the x402 protocol.

Commands

nexusx deploy

Deploy an API to the marketplace from an OpenAPI spec or URL.

# From a spec file
npx nexusx deploy \
  --spec ./openapi.json \
  --floor 0.001 \
  --ceiling 0.01 \
  --payout 0xYourBaseL2Address

# Auto-detect from a URL (no spec needed)
npx nexusx deploy \
  --url https://api.example.com \
  --floor 0.001 \
  --payout 0xYourBaseL2Address

# Preview without deploying
npx nexusx deploy --spec ./openapi.json --floor 0.001 --payout 0x... --dry-run

Options:

| Flag | Description | |---|---| | --spec <path> | Path to OpenAPI spec (JSON or YAML) | | --url <url> | API base URL (auto-detects spec) | | --name <name> | Listing name (auto-detected from spec) | | --floor <usdc> | Minimum price per call in USDC (required) | | --ceiling <usdc> | Maximum price per call (enables surge pricing) | | --payout <addr> | Base L2 wallet for USDC settlements (required) | | --category <slug> | language-models | translation | embeddings | sentiment-analysis | object-detection | datasets | | --auth <type> | api_key | oauth2 | jwt | none | | --network | base-mainnet (default) | base-sepolia | | --dry-run | Preview without deploying | | --token <token> | API token (or NEXUSX_API_TOKEN env var) |

nexusx status

Show your listings, call counts, and USDC earned.

npx nexusx status

nexusx test

Simulate an agent calling your listing through the full x402 payment flow.

npx nexusx test --listing my-weather-api --network base-sepolia

nexusx mcp

Start the NexusX MCP server so Claude and other agents can discover and call your tools.

npx nexusx mcp

Add to your Claude MCP config (claude_desktop_config.json):

{
  "mcpServers": {
    "nexusx": {
      "command": "npx",
      "args": ["nexusx", "mcp"],
      "env": {
        "NEXUSX_API_TOKEN": "nxp_...",
        "NEXUSX_BUDGET_USDC": "5.00"
      }
    }
  }
}

Payout model

  • 85% to provider — settled in USDC to your Base L2 address
  • 15% Nexus platform fee
  • Pay-on-success — you only get paid when the API call succeeds
  • No monthly fees, no setup costs

Environment variables

NEXUSX_API_TOKEN=nxp_...          # Your provider token (nexusx.dev/provider/settings)
NEXUSX_PAYOUT_ADDRESS=0x...       # Default Base L2 payout wallet
NEXUSX_NETWORK=base-mainnet       # or base-sepolia for testing
NEXUSX_GATEWAY_URL=https://gateway.nexusx.dev

Built for the agentic economy

NexusX is purpose-built for AI agent workflows:

  • Every listed API becomes a typed MCP tool agents can call
  • Dynamic auction pricing — price rises under demand, falls at idle
  • x402 protocol — HTTP-native micropayments, no subscription billing
  • Semantic discovery — agents find your tool by intent, not exact name
  • CDP wallet support — agents pay autonomously with on-chain wallets

Links