accounting
Zoho Invoice MCP, CLI, and Lua Integration for AI Agents
Zoho Invoice integration docs for AI agents: MCP gateway setup, Zoho Invoice CLI commands, Lua API reference, credentials, and function schemas.
7 functions 6 read 1 write Manual OAuth token auth
Zoho Invoice 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_invoice- route_slug
zoho-invoice- package
zoho-invoice- 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 Invoice CLIHeadless setup and direct function calls. Zoho Invoice 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 Invoice MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Zoho Invoice.
Claude Code Zoho Invoice MCP setup for Claude Code. Cursor Zoho Invoice MCP setup for Cursor. Codex Zoho Invoice MCP setup for Codex. OpenAI Agents Zoho Invoice MCP setup for OpenAI Agents SDK. Claude Agent SDK Zoho Invoice MCP setup for Claude Agent SDK. Vercel AI SDK Zoho Invoice MCP setup for Vercel AI SDK. LangChain Zoho Invoice MCP setup for LangChain. LangGraph Zoho Invoice MCP setup for LangGraph. CrewAI Zoho Invoice MCP setup for CrewAI. MCP clients Zoho Invoice MCP setup for Generic MCP Clients.
Zoho Invoice CLI Matrix
Use these pages for direct Zoho Invoice CLI workflows in scripts, CI, cron, and agent wrappers.
CI Zoho Invoice CLI for CI. Cron Jobs Zoho Invoice CLI for cron jobs. Shell Scripts Zoho Invoice CLI for shell scripts. Headless Automation Zoho Invoice CLI for headless automation. Coding Agents Zoho Invoice CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
zoho_invoice.zohoinvoice_list_invoices | Read read | 8 | List invoices from Zoho Invoice. Supports filtering by status (draft, sent, overdue, paid, void, partially_paid), customer, and date range. |
zoho_invoice.zohoinvoice_get_invoice | Read read | 1 | Get full details of a single invoice by its ID, including line items, totals, payments, and notes. |
zoho_invoice.zohoinvoice_create_invoice | Write write | 8 | Create a new invoice in Zoho Invoice. Requires at minimum a customer_id and one line item. Returns the created invoice with its ID and total. |
zoho_invoice.zohoinvoice_list_contacts | Read read | 5 | List contacts (customers and vendors) from Zoho Invoice. Supports filtering by type (customer or vendor) and pagination. |
zoho_invoice.zohoinvoice_list_items | Read read | 5 | List items (products and services) from Zoho Invoice. Use item IDs when creating invoices with line items. |
zoho_invoice.zohoinvoice_list_payments | Read read | 6 | List payments received in Zoho Invoice. Supports filtering by customer, date range, and payment mode. |
zoho_invoice.zohoinvoice_get_current_user | Read read | 0 | Get the authenticated user's profile from Zoho Invoice, including name, email, and role. |