KosmoKrator

payments

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.

7 functions 6 read 1 write Manual OAuth token auth

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.

Machine-Readable Metadata
integration_slug
zoho_bills
route_slug
zoho-bills
package
zoho-bills
auth_strategy
oauth2_manual_token Manual OAuth token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Zoho Bills MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Zoho Bills.

Zoho Bills CLI Matrix

Use these pages for direct Zoho Bills CLI workflows in scripts, CI, cron, and agent wrappers.

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.