@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/cliRequires Node 22+. Native fetch only — no axios in the dependency tree.
Quick start
# 1. Use the prxy_xxx key emailed after checkout
prxy login --token=prxy_xxxxxxxxxxxxxxxx
# 2. Confirm everything works
prxy doctor
# 3. Send your first request
prxy send "Hello!"Or run the wizard:
prxy initWhy a CLI?
The hosted API handles checkout, keys, billing, and usage. The CLI handles the scriptable stuff:
- Manage keys from CI —
prxy keys create --name=ci-runnerin a workflow. - Inspect pipelines fast —
prxy pipeline showis one command from your terminal. - Smoke-test deployments —
prxy doctorreturns exit code 0 on success, drop it into your healthcheck script. - Benchmark from your laptop —
prxy bench --remoteruns a real load test against your account, no infra setup needed. - Pipe LLM output into other tools —
prxy send "summarize this" < log.txt | jq ....
Next
Last updated on