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

payflowagent-mcp

v0.1.3

Published

MCP server for PayFlowAgent — free & pay-per-call (x402/USDC) nad.fun token intelligence and DeFi yield opportunities.

Readme

PayFlowAgent — MCP server & reference agent

Pay-per-call APIs for autonomous AI agents. USDC via x402, no signup.

MCP registry name: io.github.Coinlooter/mcp

This repository contains the open-source integration pieces:

| Path | What | |------|------| | / (root) | payflowagent-mcp — MCP server for Cursor, Claude Desktop, and custom agents. | | examples/screen-bot/ | Reference polling bot: finds high-score nad.fun tokens every few minutes. |

The scoring APIs run on PayFlowAgent infrastructure; this repo is the client surface so agents and developers can integrate in one step.

Tools (MCP)

nad.fun (Monad)

| Tool | Price | Description | |------|-------|-------------| | score_token | free | 0–100 score, riskLevel, action (rate-limited). | | decide_token | x402 | Full report: factors, graduation, momentum. | | token_summary | x402 | Graduation progress + momentum (cheap entry). | | screen_tokens | x402 | Ranked list of pre-scored fresh tokens. |

Datafeed (DeFiLlama)

| Tool | Price | Description | |------|-------|-------------| | sample_yields | free | Top yield pools + 3-item opportunity preview (score + reasons). | | yield_opportunities | x402 | Ranked yield picks with risk score & explainable reasons. |

Install (one line)

npx -y [email protected]

Use it in Cursor

~/.cursor/mcp.json (or project .cursor/mcp.json):

{
  "mcpServers": {
    "payflowagent": {
      "command": "npx",
      "args": ["-y", "[email protected]"],
      "env": {
        "PAYFLOWAGENT_API_BASE": "https://nad.payflowagent.net",
        "PAYFLOWAGENT_DATAFEED_BASE": "https://data.payflowagent.net"
      }
    }
  }
}

Use it in Claude Desktop

Same config as Cursor (Settings → Developer → MCP Servers).

Without X402_BUYER_PRIVATE_KEY only free tools work (score_token, sample_yields). Use a dedicated payer wallet (Base, USDC) — never your main wallet.

Configuration (env)

| Variable | Default | Purpose | |----------|---------|---------| | PAYFLOWAGENT_API_BASE | https://nad.payflowagent.net | nad.fun API base URL. | | PAYFLOWAGENT_DATAFEED_BASE | https://data.payflowagent.net | Datafeed API base URL. | | X402_BUYER_PRIVATE_KEY | — | Payer wallet key (Base, USDC). Enables paid tools. | | X402_BUYER_RPC | https://mainnet.base.org | Payment RPC (optional). |

MCP Registry

After npm publish, list in the official registry:

npm install -g @modelcontextprotocol/publisher
cd payflowagent-mcp
mcp-publisher login github
mcp-publisher publish

Manifest: server.json (io.github.Coinlooter/mcp).

Reference agent

See examples/screen-bot — polls /v1/screen every few minutes, de-duplicates, and alerts on new high-score tokens (optional webhook). Fork it and point it at your own trading logic.

Develop locally

npm install
npm run typecheck
npm run build      # emits dist/
npm start          # stdio server from source (tsx)

Publish to npm

npm run build
npm publish

License

MIT — see LICENSE.