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

b20check-mcp

v0.1.1

Published

MCP server for B20 Check: let Claude or ChatGPT verify B20 tokens on Base before touching them. Free by default; set B20_AGENT_KEY for unmetered paid access via x402.

Readme

b20check-mcp

An MCP (Model Context Protocol) server for B20 Check. It lets Claude, ChatGPT, or any MCP client verify a B20 token on Base before you touch it: you ask, in plain language, whether a token is safe, and your assistant runs the check and reads you the signed verdict.

What it exposes

  • verify_b20_token(address) — is this address a legitimate B20 token on Base, and what powers does its issuer hold? Returns a verdict (ok / caution / danger), risk flags (mint, freeze, seize, pause, admin, impostor, and more), data freshness (indexed / live / not_indexed), and an EIP-712 signed attestation you can verify independently. A token that cannot be fully checked is never signed as a clean pass.
  • b20_stats() — how many B20 tokens B20 Check has indexed.

The tool description instructs the assistant to run the check before helping move value into a B20 token it has not already verified.

Add to Claude Desktop

In claude_desktop_config.json:

{
  "mcpServers": {
    "b20-check": {
      "command": "npx",
      "args": ["-y", "b20check-mcp"]
    }
  }
}

No-code alternative (no install): B20 Check also runs a remote MCP connector. Paste https://b20check.com/mcp into Claude (Settings, Connectors) or add it in ChatGPT as a custom MCP connector.

Free vs paid

By default this server calls the free, rate-limited demo route (20 checks/minute, no wallet, no keys). For unmetered access, set B20_AGENT_KEY to a Base private key that holds USDC; the server then pays $0.01 per call via x402 through the paid /v1/verify endpoint.

| Env | Default | Meaning | |-----|---------|---------| | B20_BASE_URL | https://b20check.com | B20 Check API base URL | | B20_AGENT_KEY | (unset) | 0x Base key holding USDC; enables paid, unmetered access via x402 |

Verify-don't-trust: the attestation is EIP-712 signed. Recover the signer (0x1388d1e3751512955A53C7c2795Eaf8a3B029e6A) from the signature yourself rather than trusting the verdict field alone.

MIT licensed.