---
title: "Zoho Inventory Integration"
description: "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:

```typescript
import { zohoInventoryIntegration } from "integrate-sdk/server";
```

## Setup

### 1. Create a Zoho Inventory OAuth App

1. Go to [Zoho API Console](https://api-console.zoho.com)
2. Create a new OAuth application
3. Configure your redirect URI
4. 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:

```typescript
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:

```typescript
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:

```typescript
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:

```typescript
import { createMCPClient, zohoInventoryIntegration } from "integrate-sdk";

const customClient = createMCPClient({
  integrations: [zohoInventoryIntegration()],
});
```

## Configuration Options

<AutoTypeTable
  path="../src/integrations/zoho_inventory.ts"
  name="ZohoInventoryIntegrationConfig"
/>


## 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

<AutoTypeTable
  path="generated/tool-params/zoho_inventory.ts"
  name="ZohoInventoryListContactsParams"
/>

### `zoho_inventory_list_items`

Inventory list items

<AutoTypeTable
  path="generated/tool-params/zoho_inventory.ts"
  name="ZohoInventoryListItemsParams"
/>

### `zoho_inventory_list_sales_orders`

Inventory list sales orders

<AutoTypeTable
  path="generated/tool-params/zoho_inventory.ts"
  name="ZohoInventoryListSalesOrdersParams"
/>

### `zoho_inventory_create_sales_order`

Inventory create sales order

<AutoTypeTable
  path="generated/tool-params/zoho_inventory.ts"
  name="ZohoInventoryCreateSalesOrderParams"
/>

### `zoho_inventory_list_packages`

Inventory list packages

<AutoTypeTable
  path="generated/tool-params/zoho_inventory.ts"
  name="ZohoInventoryListPackagesParams"
/>

## Notes

- Category: Commerce
- Authentication mode: OAuth
