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

@qccplus/cli

v1.9.4

Published

QCC Plus - Enterprise-grade Claude Code CLI proxy server

Readme

@qccplus/cli

Enterprise-grade Claude Code CLI proxy server - Command Line Interface

npm version License: MIT

Overview

QCC Plus is a powerful proxy server for Claude Code CLI, providing:

  • Zero Dependencies: No database required! Runs in memory mode by default
  • Multi-Tenant Architecture: Account isolation with independent node pools
  • Smart Node Routing: Intelligent load balancing with automatic failover
  • Health Monitoring: Real-time health checks with auto-recovery
  • Web Management: React-based admin interface at http://localhost:8000/admin

Installation

# Using npm
npm install -g @qccplus/cli

# Using yarn
yarn global add @qccplus/cli

# Using pnpm
pnpm add -g @qccplus/cli

Quick Start (3 Steps!)

# 1. Initialize configuration
qccplus config init

# 2. Set your Anthropic API key
qccplus config set upstream.api_key sk-ant-xxx

# 3. Start the proxy server
qccplus start

# That's it! No database setup required.
# Access admin UI at http://localhost:8000/admin

Configure Claude Code to use your proxy

Add to your Claude Code settings (~/.claude/settings.json):

{
  "apiBaseUrl": "http://localhost:8000"
}

Commands

Core Commands

| Command | Description | |---------|-------------| | qccplus start | Start proxy server in background | | qccplus stop | Stop the proxy server | | qccplus restart | Restart the proxy server | | qccplus status | Show server status | | qccplus logs | View server logs | | qccplus proxy | Run proxy in foreground |

Configuration

| Command | Description | |---------|-------------| | qccplus config init | Initialize config file | | qccplus config set <key> <value> | Set a config value | | qccplus config get <key> | Get a config value | | qccplus config list | List all config values | | qccplus config edit | Open config in editor | | qccplus config path | Show config file paths | | qccplus config reset | Reset to defaults |

Service Management

| Command | Description | |---------|-------------| | qccplus service install | Install as system service | | qccplus service uninstall | Remove system service | | qccplus service status | Show service status | | qccplus service enable | Enable auto-start | | qccplus service disable | Disable auto-start |

Other Commands

| Command | Description | |---------|-------------| | qccplus version | Show detailed version info | | qccplus upgrade | Upgrade to latest version | | qccplus --help | Show help |

Configuration

Configuration is stored in ~/.qccplus/config.yaml:

listen_addr: ':8000'

upstream:
  base_url: 'https://api.anthropic.com'
  api_key: 'sk-ant-xxx'  # Your Anthropic API key
  name: 'default'

proxy:
  retry_max: 3
  fail_threshold: 3
  health_interval_sec: 30

# MySQL is OPTIONAL! Leave empty for memory mode (default)
# Only needed for: production multi-instance, data persistence across restarts
mysql:
  dsn: ''  # Empty = memory mode (no database required!)

admin:
  api_key: 'admin'
  default_account: 'default'
  default_proxy_key: 'default-proxy-key'

# Cloudflare Tunnel (optional, for exposing to internet)
tunnel:
  enabled: false
  subdomain: ''
  zone: ''
  api_token: ''

Storage Modes

Memory Mode (Default) ✅

  • No setup required - just start and use
  • Perfect for single-user/development use
  • All data stored in memory
  • Data resets on restart (but that's usually fine for personal use)

MySQL Mode (Optional)

Only needed if you want:

  • Data persistence across restarts
  • Multi-instance deployment with shared state
  • Production multi-tenant environment
# Enable MySQL persistence
qccplus config set mysql.dsn "user:pass@tcp(localhost:3306)/qccplus"

Platform Support

The CLI automatically installs the correct binary for your platform:

| Platform | Architecture | Package | |----------|--------------|---------| | macOS | Apple Silicon (M1/M2/M3) | @qccplus/darwin-arm64 | | macOS | Intel | @qccplus/darwin-x64 | | Linux | ARM64 | @qccplus/linux-arm64 | | Linux | x64 | @qccplus/linux-x64 | | Windows | x64 | @qccplus/win32-x64 |

Usage Examples

Start with Custom Port

qccplus start --port 9000

Run with Upstream Override

qccplus start --upstream https://my-proxy.example.com --api-key sk-xxx

Install as System Service (Linux)

# System-wide (requires root)
sudo qccplus service install

# User service (no root required)
qccplus service install --user

Install as System Service (macOS)

# System-wide (requires root)
sudo qccplus service install

# User agent
qccplus service install --user

Check for Updates

qccplus upgrade --check

View Logs in Real-time

qccplus logs -f

Environment Variables

The CLI respects the following environment variables:

| Variable | Description | |----------|-------------| | LISTEN_ADDR | Server listen address | | UPSTREAM_BASE_URL | Upstream API base URL | | UPSTREAM_API_KEY | Upstream API key | | PROXY_MYSQL_DSN | MySQL connection string (optional) | | ADMIN_API_KEY | Admin API key |

Troubleshooting

Binary Not Found

If you see "Binary not found" error:

# Reinstall the package
npm install -g @qccplus/cli

# Or install platform package manually
npm install -g @qccplus/darwin-arm64  # for M1/M2/M3 Mac

Permission Denied

For service installation on Linux:

# Use sudo for system service
sudo qccplus service install

# Or install as user service
qccplus service install --user

Check Version and Path

qccplus version

Documentation

License

MIT License - see LICENSE for details.