"Six months ago, everyone was talking about MCPs. And I was like, screw MCPs. Every MCP would be better as a CLI."
— Peter Steinberger, Founder of OpenClaw Watch on YouTube (~2:39:00) | Lex Fridman Podcast #491
⚠️ Unofficial CLI - Not officially sponsored or affiliated with eBay Finances.
Production-ready CLI for eBay Finances API - retrieve seller payouts and monetary transaction details.
- Seller Payouts — Access payout information
- Transactions — View transaction details
- Financial Reports — Generate financial reports
- Payout History — Track historical payouts
- JSON output — All commands support --json for scripting
npm install -g @ktmcp-cli/apiz# Configure API key
apiz config set --api-key YOUR_API_KEY
# Show configuration
apiz config show
# Get info
apiz info
# List resources
apiz list
# Get a specific resource
apiz get <id>apiz config set --api-key <key>
apiz config set --base-url <url>
apiz config showapiz info
apiz info --jsonapiz list
apiz list --json
apiz get <id>
apiz get <id> --jsonAll commands support --json for structured output:
apiz list --json | jq '.'
apiz info --json | jq '.version'No server to run. No protocol overhead. Just install and go.
- Simpler — Just a binary you call directly
- Composable — Pipe to
jq,grep,awk - Scriptable — Works in cron jobs, CI/CD, shell scripts
MIT — Part of the Kill The MCP project.