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

botsmith-mcp

v0.4.0

Published

MCP server exposing botsmith's pay-per-call APIs (web reader, domain and on-chain intel, Polymarket signals) as tools your agent pays for with USDC via x402. No API keys.

Readme

botsmith-mcp

An MCP server that gives your agent pay-per-call tools with no API keys and no accounts. Each call is paid automatically in USDC on Base via the x402 protocol from a wallet you control.

Tools are loaded live from botsmith's catalog, so the set grows without updating this package:

  • read - fetch any public web page as clean, boilerplate-free markdown ($0.003/call)
  • dossier - full domain intelligence: DNS, SPF/DMARC, RDAP registration, live TLS cert, in one call ($0.004/call)
  • onchain - EVM address due-diligence across Base/Ethereum/Optimism: contract-or-wallet, scam/reputation flags, balances, verification ($0.004/call)
  • pkg-risk - supply-chain risk check for an npm or PyPI package: vulnerabilities, install scripts, typosquat distance, verdict ($0.01/call)
  • wallet-risk - counterparty screening for an EVM wallet: OFAC sanctions, scam flags, age, funding origin, 0-100 score ($0.05/call)
  • seller-trust - vet any x402 seller before paying: live 402 handshake, requirements validity, Bazaar listing status ($0.008/call)
  • models_search / models_get - current LLM landscape as data: context windows and live USD/Mtok pricing ($0.003-0.004/call)
  • x_tweet / x_user / x_search - read X (Twitter) posts, profiles and search without an account or API key ($0.005-0.01/call)
  • x_dossier - full X account intelligence in one call: profile, recent-activity analytics and a bot-likelihood signal ($0.02/call)
  • documents_convert - convert a PDF, Word, Excel, PowerPoint, HTML or CSV document (by URL or inline) into clean markdown ($0.02/call)
  • stablecoin_peg - live peg deviation, supply and chain breakdown for any stablecoin ($0.004/call)
  • polymarket_markets - the best Polymarket markets to watch right now, ranked ($0.005/call)
  • polymarket_market - per-market snapshot with order-book microstructure signals ($0.006/call)

Setup

Add to your MCP client config (Claude Desktop, Claude Code, etc.):

{
  "mcpServers": {
    "botsmith": {
      "command": "npx",
      "args": ["-y", "botsmith-mcp"],
      "env": {
        "BOTSMITH_PRIVATE_KEY": "0xYOUR_BASE_WALLET_PRIVATE_KEY"
      }
    }
  }
}

BOTSMITH_PRIVATE_KEY is a Base wallet holding a small amount of USDC. Payment is gasless for you (EIP-3009); you only spend the per-call price. Use a dedicated low-balance wallet - treat the key like any hot-wallet secret.

Without a key the server still starts and lists the tools, but paid calls return a message telling you to add one. Point at a different deployment with BOTSMITH_BASE_URL.

How it works

On start the server reads GET https://x402.botsmith.dev/catalog, registers one MCP tool per service route with its JSON Schema, and on each call issues the HTTP request through an x402-paying fetch. A 402 challenge is answered by signing a USDC payment authorization with your wallet and retrying - all inside the tool call, invisible to the agent.

License

MIT