Zoho Inventory Integration
Manage Zoho Inventory organizations, contacts, items, sales orders, packages, and shipments
The Zoho Inventory integration provides access to manage Zoho Inventory organizations, contacts, items, sales orders, packages, and shipments through the Integrate MCP server.
Installation
The Zoho Inventory integration is included with the SDK:
import { zohoInventoryIntegration } from "integrate-sdk/server";Setup
1. Create a Zoho Inventory 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 Inventory integration to your server configuration. The integration automatically reads ZOHO_INVENTORY_CLIENT_ID and ZOHO_INVENTORY_CLIENT_SECRET from your environment variables:
import { createMCPServer, zohoInventoryIntegration } from "integrate-sdk/server";
export const { client: serverClient } = createMCPServer({
apiKey: process.env.INTEGRATE_API_KEY,
integrations: [
zohoInventoryIntegration({
scopes: ["ZohoInventory.fullaccess.all"], // Optional
}),
],
});You can override the environment variables by passing explicit values:
zohoInventoryIntegration({
clientId: process.env.CUSTOM_ZOHO_INVENTORY_ID,
clientSecret: process.env.CUSTOM_ZOHO_INVENTORY_SECRET,
scopes: ["ZohoInventory.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_inventory");
const result = await client.zoho_inventory.listOrganizations({});
console.log(result);If you're using a custom client, add the integration to the integrations array:
import { createMCPClient, zohoInventoryIntegration } from "integrate-sdk";
const customClient = createMCPClient({
integrations: [zohoInventoryIntegration()],
});Configuration Options
export interface ZohoInventoryIntegrationConfig {
clientId?: string;
Default Scopes
These defaults are applied unless you override scopes in the integration config:
ZohoInventory.fullaccess.all
Tools
zoho_inventory_list_organizations
Inventory list organizations
No parameters.
zoho_inventory_list_contacts
Inventory list contacts
export interface ZohoInventoryListContactsParams {
"organization_id"?: string;
zoho_inventory_list_items
Inventory list items
export interface ZohoInventoryListItemsParams {
"organization_id"?: string;
zoho_inventory_list_sales_orders
Inventory list sales orders
export interface ZohoInventoryListSalesOrdersParams {
"organization_id"?: string;
zoho_inventory_create_sales_order
Inventory create sales order
export interface ZohoInventoryCreateSalesOrderParams {
"organization_id"?: string;
zoho_inventory_list_packages
Inventory list packages
export interface ZohoInventoryListPackagesParams {
"organization_id"?: string;
Notes
- Category: Commerce
- Authentication mode: OAuth