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
Prop
Type
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
Prop
Type
zoho_inventory_list_items
Inventory list items
Prop
Type
zoho_inventory_list_sales_orders
Inventory list sales orders
Prop
Type
zoho_inventory_create_sales_order
Inventory create sales order
Prop
Type
zoho_inventory_list_packages
Inventory list packages
Prop
Type
Notes
- Category: Commerce
- Authentication mode: OAuth