data
ChargeOver MCP, CLI, and Lua Integration for AI Agents
ChargeOver integration docs for AI agents: MCP gateway setup, ChargeOver CLI commands, Lua API reference, credentials, and function schemas.ChargeOver for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
chargeover.chargeover_list_customers | Read read | 6 | List customers from ChargeOver. Supports limit/offset pagination, where filters, sorting, and optional expansion. Use where expressions such as company:CONTAINS:acme or customer_status_state:EQUALS:a. |
chargeover.chargeover_get_customer | Read read | 1 | Get detailed information about a specific ChargeOver customer by ID, including contact details, billing address, account balance, and payment methods. |
chargeover.chargeover_list_subscriptions | Read read | 6 | List ChargeOver subscriptions, which the API exposes as package records at /api/v3/package. Supports customer filtering plus where/order/expand query parameters. |
chargeover.chargeover_list_invoices | Read read | 6 | List invoices from ChargeOver. Supports limit/offset pagination, where filters such as date:GTE:2026-01-01, sorting, and optional expansion. |
chargeover.chargeover_get_invoice | Read read | 1 | Get detailed information about a specific ChargeOver invoice by ID, including line items, totals, tax, applied payments, and invoice URL. |
chargeover.chargeover_list_transactions | Read read | 5 | List transactions from ChargeOver, including payments, refunds, and credits. Supports limit/offset pagination, where filters, sorting, and applied_to expansion. |
chargeover.chargeover_get_transaction | Read read | 1 | Get detailed information about a specific ChargeOver transaction by transaction_id. |
chargeover.chargeover_get_current_user | Read read | 0 | Verify ChargeOver API access with a lightweight authenticated customer query. ChargeOver does not expose a dedicated /me endpoint in REST API v3. |