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

camp-mcp

v0.1.0

Published

MCP server for camp — query Arbitrum One on-chain data (blocks, transfers, decoded events, SQL) with no API key.

Readme

camp-mcp

Query Arbitrum One on-chain data from any AI agent — no API key, no signup.

An MCP server over camp, the free Dune-class data API for Arbitrum One. Point Claude, Cursor, or any MCP client at it and ask:

"What were the biggest USDC transfers on Arbitrum in the last hour?" "Show me the latest Uniswap v3 swaps in the USDC/WETH pool." "Write SQL to count transactions per block over the last 5,000 blocks and run it."

It's a thin, stateless wrapper — your agent calls camp's public REST API. Nothing to host.

Tools

| Tool | What it does | |---|---| | status | Chain tip, indexed range, history depth (call first) | | sql | Run a read-only DataFusion SELECT (the power tool — Dune-style) | | sql_help | Tables, columns, UDFs, and example queries for sql | | transfers | Decoded ERC-20/721 Transfers (chain-wide or per token) | | whale_transfers | Large transfers ($1M+ USDC by default) | | token_volume | Bucketed transfer count + volume for an ERC-20 | | address_activity | A wallet/contract's txs, transfers, or interactions | | events | Raw log filter (chain-wide or by address/topic) | | uniswap_v3 | Decoded v3 swap/mint/burn (defaults to USDC/WETH 0.05%) | | block / tx | Look up a block or transaction |

Every tool works with zero/minimal args — bare calls return live data near the chain tip.

Setup

Requires Node ≥ 18. No install needed beyond npx.

Claude Code

claude mcp add camp -- npx -y camp-mcp

Claude Desktop — add to claude_desktop_config.json:

{
  "mcpServers": {
    "camp": { "command": "npx", "args": ["-y", "camp-mcp"] }
  }
}

Cursor — add to ~/.cursor/mcp.json (same shape as above).

Restart the client; "camp" and its tools will appear.

Configuration (optional)

| Env var | Default | Purpose | |---|---|---| | CAMP_BASE_URL | https://engine.camp | Point at your own camp node | | CAMP_TOKEN | — | Anonymous bearer for higher rate limits (mint via POST /v1/tokens) |

{
  "mcpServers": {
    "camp": {
      "command": "npx",
      "args": ["-y", "camp-mcp"],
      "env": { "CAMP_TOKEN": "camp_xxx" }
    }
  }
}

Notes

  • Rolling window. camp keeps a recent window of Arbitrum history (currently ~15 days, growing toward ~30). It's built for fresh data, not deep history. status reports the exact queryable block range.
  • SQL must filter on block_num and stay within ~100k blocks per query. Ask the agent to call status then sql_help before composing a query.
  • Anonymous limits apply (30 req/min · 500/hour per IP); set CAMP_TOKEN to raise them.

MIT licensed. Part of camp.