KosmoKrator

data

Zoho Bills MCP, CLI, and Lua Integration for AI Agents

Zoho Bills integration docs for AI agents: MCP gateway setup, Zoho Bills CLI commands, Lua API reference, credentials, and function schemas.

Zoho Bills 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

FunctionTypeParametersDescription
zoho-bills.zoho_bills_list_invoices Read read 4 List invoices from Zoho Bills. Optionally filter by status (draft, sent, overdue, paid, voided, partially_paid) or customer ID.
zoho-bills.zoho_bills_get_invoice Read read 1 Retrieve a single invoice from Zoho Bills by its ID. Returns full invoice details including line items, totals, and status.
zoho-bills.zoho_bills_create_invoice Write write 4 Create a new invoice in Zoho Bills. Provide a customer ID, line items, and optional date/due date. Each line item should include item_id or a name, plus rate and quantity.
zoho-bills.zoho_bills_list_customers Read read 3 List customers (contacts) from Zoho Bills. Optionally filter by type (customer or vendor). Returns paginated results.
zoho-bills.zoho_bills_get_customer Read read 1 Retrieve a single customer (contact) from Zoho Bills by ID. Returns full contact details including billing address and contact persons.
zoho-bills.zoho_bills_list_items Read read 2 List items (products and services) from Zoho Bills. Returns paginated results with item details like name, rate, and description.
zoho-bills.zoho_bills_get_current_user Read read 0 Get the currently authenticated Zoho Bills user profile. Useful for verifying connectivity and checking user permissions.