Zoho Invoice Integration
Manage Zoho Invoice organizations, customers, items, estimates, invoices, payments, and reports
The Zoho Invoice integration provides access to manage Zoho Invoice organizations, customers, items, estimates, invoices, payments, and reports through the Integrate MCP server.
Installation
The Zoho Invoice integration is included with the SDK:
import { zohoInvoiceIntegration } from "integrate-sdk/server";Setup
1. Create a Zoho Invoice OAuth App
- Go to Zoho API Console
- Create a new OAuth application
- Configure your redirect URI
- Note your Client ID and Client Secret
2. Configure the Integration on Your Server
Add the Zoho Invoice integration to your server configuration. The integration automatically reads ZOHO_INVOICE_CLIENT_ID and ZOHO_INVOICE_CLIENT_SECRET from your environment variables:
import { createMCPServer, zohoInvoiceIntegration } from "integrate-sdk/server";
export const { client: serverClient } = createMCPServer({
apiKey: process.env.INTEGRATE_API_KEY,
integrations: [
zohoInvoiceIntegration({
scopes: ["ZohoInvoice.fullaccess.all"], // Optional
}),
],
});You can override the environment variables by passing explicit values:
zohoInvoiceIntegration({
clientId: process.env.CUSTOM_ZOHO_INVOICE_ID,
clientSecret: process.env.CUSTOM_ZOHO_INVOICE_SECRET,
scopes: ["ZohoInvoice.fullaccess.all"], // Optional
});3. Client-Side Usage
The default client automatically includes all integrations. You can use it directly:
import { client } from "integrate-sdk";
await client.authorize("zoho_invoice");
const result = await client.zoho_invoice.listOrganizations({});
console.log(result);If you're using a custom client, add the integration to the integrations array:
import { createMCPClient, zohoInvoiceIntegration } from "integrate-sdk";
const customClient = createMCPClient({
integrations: [zohoInvoiceIntegration()],
});Configuration Options
export interface ZohoInvoiceIntegrationConfig {
clientId?: string;
Default Scopes
These defaults are applied unless you override scopes in the integration config:
ZohoInvoice.fullaccess.all
Tools
zoho_invoice_list_organizations
Invoice list organizations
export interface ZohoInvoiceListOrganizationsParams { organization_id?: string;
zoho_invoice_list_contacts
Invoice list contacts
export interface ZohoInvoiceListContactsParams { organization_id?: string;
zoho_invoice_list_items
Invoice list items
export interface ZohoInvoiceListItemsParams { organization_id?: string;
zoho_invoice_list_estimates
Invoice list estimates
export interface ZohoInvoiceListEstimatesParams { organization_id?: string;
zoho_invoice_list_invoices
Invoice list invoices
export interface ZohoInvoiceListInvoicesParams { organization_id?: string;
zoho_invoice_list_customerpayments
Invoice list customerpayments
export interface ZohoInvoiceListCustomerpaymentsParams { organization_id?: string;
zoho_invoice_create_invoice
Invoice create invoice
export interface ZohoInvoiceCreateInvoiceParams { organization_id?: string;
zoho_invoice_get_aging_summary
Invoice get aging summary
export interface ZohoInvoiceGetAgingSummaryParams { organization_id?: string }
Notes
- Category: Accounting
- Authentication mode: OAuth