Billingo is a comprehensive invoicing and billing solution popular in Hungary. This CLI provides full access to the Billingo API, allowing you to manage invoices, clients, products, and more directly from your terminal.
Install the CLI globally using npm:
npm install -g @ktmcp-cli/billingo # Set up your API credentials
billingo auth login --api-key YOUR_API_KEY
# Verify authentication
billingo auth status # Get all invoices
billingo invoices list
# Filter by date range
billingo invoices list --start-date 2026-01-01 --end-date 2026-01-31
# Export as JSON
billingo invoices list --format json # Create a new invoice
billingo invoices create \
--client-id 12345 \
--items '[{"name":"Service","quantity":1,"unit_price":100}]' \
--due-date 2026-02-28 For complete documentation, API reference, and advanced usage examples, visit the GitHub repository. Each CLI includes comprehensive README.md, AGENT.md for AI integration, and OPENCLAW.md for tool definitions.