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_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Zoho Bills CLIHeadless setup and direct function calls. Zoho Bills MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Zoho Bills MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Zoho Bills.
Claude Code Zoho Bills MCP setup for Claude Code. Cursor Zoho Bills MCP setup for Cursor. Codex Zoho Bills MCP setup for Codex. OpenAI Agents Zoho Bills MCP setup for OpenAI Agents SDK. Claude Agent SDK Zoho Bills MCP setup for Claude Agent SDK. Vercel AI SDK Zoho Bills MCP setup for Vercel AI SDK. LangChain Zoho Bills MCP setup for LangChain. LangGraph Zoho Bills MCP setup for LangGraph. CrewAI Zoho Bills MCP setup for CrewAI. MCP clients Zoho Bills MCP setup for Generic MCP Clients.
Zoho Bills CLI Matrix
Use these pages for direct Zoho Bills CLI workflows in scripts, CI, cron, and agent wrappers.
CI Zoho Bills CLI for CI. Cron Jobs Zoho Bills CLI for cron jobs. Shell Scripts Zoho Bills CLI for shell scripts. Headless Automation Zoho Bills CLI for headless automation. Coding Agents Zoho Bills CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
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. |