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

@pelletfi/mcp

v0.7.1

Published

Token intelligence on Base — MCP server with x402 micropayments

Readme

@pelletfi/mcp

Token intelligence on Base for AI assistants. Market data, safety flags, contract forensics, and full briefings — accessible via x402 micropayments per call, or unlimited with a Pellet Pro subscription ($49/mo, no per-call signing).

Tools

| Tool | Description | Cost | |------|-------------|------| | search_token | Search by symbol or address | Free | | lookup_token | Market data + safety flags | Free | | get_safety_flags | Quick safety check | Free | | batch_lookup | Batch market data + flag counts (up to 25 tokens) | Free | | pulse_tokens | Lightweight monitoring signal + severity (up to 25 tokens) | Free | | get_contract | Contract forensics (verification, ownership, risk score, flags) | $0.02 USDC or Pro | | analyze_token | Full AI analysis (Claude reasoning, contract forensics, creator history) | $0.05 USDC or Pro |

Try it

npx pelletfi BRETT

Add --contract ($0.02) or --analyze ($0.05) for paid features. Requires EVM_PRIVATE_KEY env var.

Install

Claude Code

# Free tools only
claude mcp add pellet -- npx -y @pelletfi/mcp

# With Pellet Pro subscription ($49/mo — pelletfi.com/pro)
claude mcp add pellet -e PELLET_KEY=pellet_pro_... -- npx -y @pelletfi/mcp

# With per-call x402 payments (funded EVM wallet)
claude mcp add pellet -e EVM_PRIVATE_KEY=0x... -- npx -y @pelletfi/mcp

Cursor / Windsurf / .mcp.json

{
  "mcpServers": {
    "pellet": {
      "command": "npx",
      "args": ["-y", "@pelletfi/mcp"],
      "env": {
        "PELLET_KEY": "pellet_pro_..."
      }
    }
  }
}

Use PELLET_KEY (Pro subscription, recommended) or EVM_PRIVATE_KEY (per-call x402). Omit both for free tools only.

Configuration

| Variable | Required | Description | |----------|----------|-------------| | PELLET_KEY | For paid tools (recommended) | Pellet Pro Bearer key — bypasses x402 entirely. Get one at pelletfi.com/pro. | | EVM_PRIVATE_KEY | For paid tools (alternative) | Private key for x402 micropayments on Base. Pay per call. | | PELLET_API_URL | No | Override API URL (default: https://pelletfi.com) |

PELLET_KEY and EVM_PRIVATE_KEY are alternatives — set whichever fits your usage. If both are set, the Pro key is used.

How payments work

Two modes:

Pro subscription (recommended for production agents):

  1. Subscribe at pelletfi.com/pro — connect wallet, sign one $49 USDC transaction on Base
  2. Receive an API key starting with pellet_pro_
  3. Drop it in PELLET_KEY and every paid tool call sends Authorization: Bearer pellet_pro_... — no per-call signing
  4. 10,000 cached briefings/month, 500 req/hr rate limit, 30 days

Per-call x402 (recommended for ad-hoc / try-before-you-buy):

  1. Fund a Base wallet with USDC
  2. Set EVM_PRIVATE_KEY to its private key
  3. The server signs each individual call ($0.02 contract, $0.05 analysis)
  4. No subscription, pay only when used

Free tools (search_token, lookup_token, get_safety_flags, batch_lookup, pulse_tokens) never trigger payments in either mode.

Links