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

@rugburn/mcp

v0.2.0

Published

MCP server for RugBurn token-risk, wallet-risk, deployer/cohort, launchpad, and smart-money intelligence over API v1. stdio + Streamable HTTP (with server push).

Downloads

67

Readme

RugBurn MCP Server

Read-only Model Context Protocol server for RugBurn API v1. Gives Claude and any MCP-compatible agent runtime direct access to RugBurn token screening, deployer history, and pre-trade decisions.

Install

npx @rugburn/mcp

No clone needed. Requires a rbn_live_ API key from your RugBurn dashboard.

Claude Code Setup

claude mcp add rugburn \
  -s user \
  -e RUGBURN_API_BASE_URL=https://rugburn.io \
  -e RUGBURN_API_KEY=rbn_live_... \
  -- npx @rugburn/mcp

Claude Desktop / Other Clients

{
  "mcpServers": {
    "rugburn": {
      "command": "npx",
      "args": ["@rugburn/mcp"],
      "env": {
        "RUGBURN_API_BASE_URL": "https://rugburn.io",
        "RUGBURN_API_KEY": "${RUGBURN_API_KEY}"
      }
    }
  }
}

Tools

| Tool | Description | |---|---| | screen_token | Latest cached token-risk report for a Solana mint | | screen_wallet | Wallet-risk screening for a Solana wallet | | explain_score | Compact explanation of a token or wallet score | | get_deployer_history | RugBurn-observed deployer launch history | | pre_trade_check | Pre-trade go/no-go decision with invalidation rules | | monitor_position | Active-position hold/exit signal with pressure signals | | smart_money_atlas | Top traders by realized edge (Dune-cached leaderboard) | | cohort_traversal | Deployer cohort graph — edge-resolved fresh-wallet rotation + Dune reputation | | launchpad_classify | Real deployer vs launchpad authority PDA (e.g. pump.fun) |

pre_trade_check and monitor_position require a Pro or Whale API key.

Streamable HTTP transport (v2)

Beyond stdio, the server runs as a Streamable HTTP endpoint so agents receive pushed events over an open connection instead of polling:

RUGBURN_API_BASE_URL=https://rugburn.io \
RUGBURN_MCP_HTTP_PORT=8787 \
RUGBURN_MCP_PUSH_SECRET=<shared-secret> \
  rugburn-mcp-http
  • POST / — JSON-RPC; the agent's key is read from Authorization: Bearer.
  • GET / — opens a text/event-stream (keyed by Mcp-Session-Id) the server pushes notifications down, with heartbeats.
  • POST /push — a trusted producer (worker/cron) posts an invalidation event here with X-RugBurn-Push-Secret; it is broadcast to every open session as an MCP notifications/message. This is the seam the live event source plugs into.

Environment

RUGBURN_API_BASE_URL=https://rugburn.io   # optional, defaults to rugburn.io
RUGBURN_API_KEY=rbn_live_...              # required
RUGBURN_MCP_TIMEOUT_MS=20000             # optional, default 20s

Never configure this package with Supabase keys, Helius keys, service-role credentials, or worker secrets.

Boundary

RugBurn MCP returns risk-screening evidence for agent reasoning. It is not financial advice and is not a legal compliance determination.