Skip to Content
prxy.monster v1 is in early access. See what shipped →
CLI@prxy/cli

@prxy/cli

The official command-line client for prxy.monster. Manage API keys, inspect your module pipeline, run benchmarks, send one-off requests — all from your terminal.

$ prxy send "What is the capital of France?" Paris. (Used 12 input + 3 output tokens via claude-haiku-4-5. Cost: <$0.01)

Install

npm install -g @prxy/cli # or pnpm add -g @prxy/cli

Requires Node 22+. Native fetch only — no axios in the dependency tree.

Quick start

# 1. Get a token from https://app.prxy.monster/keys prxy login --token=prxy_xxxxxxxxxxxxxxxx # 2. Confirm everything works prxy doctor # 3. Send your first request prxy send "Hello!"

Or run the wizard:

prxy init

Why a CLI?

The dashboard at app.prxy.monster handles the visual stuff — graphs, billing, team management. The CLI handles the scriptable stuff:

  • Manage keys from CIprxy keys create --name=ci-runner in a workflow.
  • Inspect pipelines fastprxy pipeline show is one keystroke versus three clicks in the dashboard.
  • Smoke-test deploymentsprxy doctor returns exit code 0 on success, drop it into your healthcheck script.
  • Benchmark from your laptopprxy bench --remote runs a real load test against your account, no infra setup needed.
  • Pipe LLM output into other toolsprxy send "summarize this" < log.txt | jq ....

Next

Last updated on