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

@blockrun/cc

v0.8.2

Published

Run Claude Code with any model — no rate limits, no account locks, no phone verification. Pay per use with USDC.

Readme

       

npm version npm downloads GitHub stars TypeScript License: BUSL-1.1

x402 Protocol Base Network Solana BlockRun Telegram

brcc is a local proxy that lets you run Claude Code with any LLM model — GPT-5, Claude, Gemini, DeepSeek, Grok, and 40+ more — without rate limits, without an Anthropic account, and without phone verification. You pay per request with USDC via the x402 protocol. Your wallet is your identity. Your private key never leaves your machine.


Why brcc exists

Claude Code users are frustrated. Over 4,350 GitHub issue comments about the same problems:

| | Issue | Comments | |--|-------|----------| | 🔴 | "Instantly hitting usage limits with Max subscription" | 1,252 | | 🔴 | "Phone verification — unable to send code" | 546 | | 🔴 | "Account disabled after payment" | 145 | | 🔴 | "5-hour limit reached in less than 1h30" | 108 | | 🔴 | "Rate limit reached despite Max subscription and only 16% usage" | 89 |

Every one of these people is a potential brcc user.

brcc eliminates all of these problems:

  • No rate limits — pay per request, use as much as you want
  • No account — a wallet is generated locally, no signup
  • No phone verification — USDC is your authentication
  • No region restrictions — works everywhere, priced the same
  • No billing surprises — transparent per-token pricing

How it compares

| | Claude Max ($200/mo) | OpenRouter | brcc | |--|---------------------|------------|----------| | Rate limits | Constantly hit | Per-model limits | None | | Account required | Yes + phone | Yes + email | No | | Models | Claude only | 200+ (manual select) | 40+ (auto or manual) | | Payment | Credit card, subscription | Credit card, pre-pay | USDC per-request | | Auth | OAuth + API key conflicts | API key | Wallet signature | | Pricing | Opaque | Transparent | Transparent | | Runs locally | N/A | No | Yes (proxy) | | Monthly cost | $100-200 fixed | Varies | $5-50 based on usage |


Quick Start

One-line install (Linux/macOS)

curl -fsSL https://raw.githubusercontent.com/BlockRunAI/brcc/main/install.sh | bash

Installs Node.js (if needed) + Claude Code + brcc + creates wallet.

Manual install

# 1. Install Claude Code
curl -fsSL https://claude.ai/install.sh | bash

# 2. Install brcc (use sudo on Linux)
sudo npm install -g @blockrun/cc  # use sudo on Linux

# 3. Create wallet
brcc setup base      # Base chain (Coinbase L2)
# or
brcc setup solana    # Solana chain

# 4. Fund your wallet with USDC (or use free models without funding)

# 5. Launch
brcc start

That's it. Claude Code opens with access to 40+ models, no rate limits.


Choosing Models

From the command line

brcc start                                # Default (Claude Sonnet 4.6)
brcc start --model nvidia/gpt-oss-120b    # Free — no USDC needed
brcc start --model openai/gpt-5.4         # GPT-5.4
brcc start --model deepseek/deepseek-chat # Budget coding ($0.28/M)
brcc start --model anthropic/claude-opus-4.6  # Most capable

Inside Claude Code

Use /model to switch between Sonnet, Opus, and Haiku. Each maps to the BlockRun model you've configured:

# Customize what each /model option routes to
brcc config set sonnet-model anthropic/claude-sonnet-4.6    # default
brcc config set opus-model anthropic/claude-opus-4.6        # default
brcc config set haiku-model deepseek/deepseek-chat          # cheap alternative

List all models

$ brcc models

Free Models (no USDC needed)
──────────────────────────────────────────────────────────────────────
  nvidia/gpt-oss-120b
  nvidia/gpt-oss-20b

Paid Models
──────────────────────────────────────────────────────────────────────
  Model                               Input        Output
  deepseek/deepseek-chat              $0.28/M      $0.42/M
  anthropic/claude-haiku-4.5          $1.00/M      $5.00/M
  openai/gpt-5.4                      $2.50/M      $15.00/M
  anthropic/claude-sonnet-4.6         $3.00/M      $15.00/M
  anthropic/claude-opus-4.6           $5.00/M      $25.00/M
  ... (31 models total)

What $5 Gets You

| Model | ~Requests per $5 | Best For | |-------|-------------------|----------| | DeepSeek V3 | ~5,000 | Budget coding | | Claude Haiku 4.5 | ~500 | Fast tasks | | Claude Sonnet 4.6 | ~100 | General coding | | GPT-5.4 | ~80 | Reasoning | | Claude Opus 4.6 | ~50 | Most capable | | GPT-OSS 120B | Unlimited | Free tier |


Commands

| Command | Description | |---------|-------------| | brcc setup [base\|solana] | Create wallet for payments | | brcc start [--model <id>] | Start proxy + launch Claude Code | | brcc models | List all models with pricing | | brcc balance | Check wallet USDC balance | | brcc config set <key> <value> | Configure model mappings | | brcc config list | View current settings |

brcc setup

brcc setup          # Default: Base chain
brcc setup base     # Coinbase L2 — low fees, fast
brcc setup solana   # Solana — also low fees, fast

Your wallet is saved to ~/.blockrun/ and shared with all BlockRun tools.

brcc start

brcc start                              # Default model
brcc start --model nvidia/gpt-oss-120b  # Free model
brcc start --model openai/gpt-5.4      # Specific model
brcc start --no-launch                  # Proxy only mode
brcc start -p 9000                      # Custom port

brcc config

brcc config set default-model nvidia/gpt-oss-120b
brcc config set sonnet-model openai/gpt-5.4
brcc config set opus-model anthropic/claude-opus-4.6
brcc config set haiku-model deepseek/deepseek-chat
brcc config list

How It Works

┌─────────────────────────────────────────────────────────────┐
│  Claude Code                                                 │
│  (thinks it's talking to Anthropic)                         │
└──────────────────────┬──────────────────────────────────────┘
                       │ Anthropic Messages API format
                       ▼
┌─────────────────────────────────────────────────────────────┐
│  brcc proxy (localhost:8402)                                 │
│                                                              │
│  1. Receives request from Claude Code                        │
│  2. Replaces model name (if --model set)                    │
│  3. Signs x402 USDC payment with your wallet                │
│  4. Forwards to BlockRun API                                │
│  5. Streams response back to Claude Code                    │
└──────────────────────┬──────────────────────────────────────┘
                       │ + x402 payment signature
                       ▼
┌─────────────────────────────────────────────────────────────┐
│  BlockRun API (blockrun.ai or sol.blockrun.ai)              │
│                                                              │
│  Routes to: GPT-5 · Claude · Gemini · DeepSeek · Grok ·    │
│             NVIDIA · MiniMax · Moonshot · 40+ models         │
└─────────────────────────────────────────────────────────────┘

Your private key stays on your machine. Only payment signatures are sent.


Funding Your Wallet

brcc uses USDC — a dollar-pegged stablecoin. No crypto volatility.

Base chain (default):

  1. Buy USDC on Coinbase
  2. Send to your brcc wallet address (shown in brcc setup)
  3. Make sure it's on Base network (not Ethereum mainnet)

Solana chain:

  1. Buy USDC on any exchange
  2. Send to your brcc Solana address
  3. Send on Solana network

Typical cost: $0.001–$0.05 per interaction. $5 lasts most developers a week.


FAQ

Do I need an Anthropic account? No. brcc connects Claude Code to BlockRun instead of Anthropic.

Can I use non-Claude models? Yes. GPT-5, Gemini, DeepSeek, Grok, and 30+ others work through Claude Code via brcc.


Links

License

Business Source License 1.1 — Free to use, modify, and deploy. Cannot be used to build a competing hosted service. Converts to MIT in 2030.