Zoho inventory MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Zoho inventory MCP or direct API to manage stock, update orders, track shipments, and sync sales channels through natural language.

Zoho inventory logoZoho inventory
Oauth2

Zoho Inventory is a cloud-based inventory and order management solution for businesses. It streamlines stock tracking, order fulfillment, and multi-channel inventory control.

58 Tools

Try Zoho inventory now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Zoho inventory
Try asking
TOOLS

Supported Tools

Every Zoho inventory action and event your agent gets out of the box.

Add Credit Note Comment

Tool to add a comment to a credit note in Zoho Inventory.

Add Invoice Attachment

Tool to upload an attachment to a specific invoice.

Add Invoice Comment

Tool to add a comment to a specific invoice in Zoho Inventory.

Apply Credits To Invoices

Tool to apply credits from a credit note to one or more invoices.

Bulk Delete Sales Orders

Tool to bulk delete sales orders.

Bulk Email Invoices

Sends multiple invoices by email to a contact in a single API call.

Bulk Export Invoices

Tool to bulk export invoices as a single PDF.

Bulk Print Invoices

Generate a consolidated PDF containing multiple invoices for printing or archiving.

Bulk Print Packages

Tool to bulk print package slips as a consolidated PDF.

Cancel Invoice Write Off

Tool to cancel write off for an invoice.

Create Bill

Tool to create a bill in Zoho Inventory.

Create Contact

Tool to create a new contact (customer or vendor) in Zoho Inventory.

Create Contact Person

Tool to create a contact person.

Create Credit Note

Tool to create a new credit note in Zoho Inventory.

Create Customer Payment

Tool to create a customer payment in Zoho Inventory.

Create Invoice

Tool to create a new invoice in Zoho Inventory.

Create Item

Tool to create a new item in Zoho Inventory.

Create Item Group

Tool to create an item group in Zoho Inventory.

Create Package

Tool to create a package for a sales order in Zoho Inventory.

Create Purchase Order

Tool to create a purchase order in Zoho Inventory.

Create Sales Order

Tool to create a sales order in Zoho Inventory.

Deactivate Contact

Tool to mark a contact as inactive in Zoho Inventory.

Deactivate Item

Tool to mark an item as inactive in Zoho Inventory.

Deactivate Item Group

Tool to mark an item group as inactive in Zoho Inventory.

Delete Composite Item

Permanently deletes a composite item from Zoho Inventory.

Delete Contact

Tool to delete a contact.

Delete Contact Person

Tool to delete a contact person.

Delete Invoice

Tool to delete an invoice.

Delete Invoice Attachment

Tool to delete an invoice attachment.

Delete Invoice Comment

Delete a specific comment from an invoice in Zoho Inventory.

Delete Item

Tool to delete an item.

Delete Item Group

Tool to delete an item group.

Delete Item Image

Tool to delete an image associated with an item.

Delete Package

Tool to delete a package.

Delete Sales Order

Tool to delete a sales order.

Disable Payment Reminder

Tool to disable payment reminders for an invoice.

Email Contact

Tool to email a contact in Zoho Inventory.

Email Contact Statement

Tool to email a statement of transactions to a contact.

Email Credit Note

Tool to email a credit note to customers.

Email Invoice

Tool to email a specific invoice to customers.

Enable Invoice Payment Reminder

Tool to enable payment reminders for an invoice.

Get Contact

Tool to retrieve a specific contact by ID from Zoho Inventory.

Get Contact Address

Tool to get contact address.

Get Credit Note

Tool to retrieve a credit note by ID.

Get Credit Note Email Content

Tool to get credit note email content including subject, body, recipients, and available templates.

Get Current User

Tool to get details of the currently authenticated user in Zoho Inventory.

Get Sales Order

Tool to retrieve the details of an existing sales order.

List Bills

Tool to list bills.

List Contacts

Tool to list all contacts (customers and vendors) in Zoho Inventory.

List Credit Notes

Tool to list all credit notes.

List Currencies

Tool to list all currencies configured in Zoho Inventory.

List Invoice Payments

Tool to list all payments received for a specific invoice.

List Invoices

Tool to list all invoices in Zoho Inventory.

List Item Groups

Tool to list all item groups in Zoho Inventory.

List Items

Tool to list all items in Zoho Inventory.

List Organizations

Tool to list all organizations the user has access to in Zoho Inventory.

List Purchase Orders

Tool to list purchase orders.

List Sales Orders

Tool to list sales orders.

SETUP GUIDE

Connect Zoho inventory MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Show all low stock items in Zoho inventory' }],
  stopWhen: stepCountIs( 5 )
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Zoho inventory API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Zoho inventory Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Show all low stock items in Zoho inventory'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Zoho inventory actions with your Agent

Why Use Composio?

AI Native Zoho inventory Integration

  • Supports both Zoho inventory MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Zoho inventory data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Zoho inventory access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Zoho inventory
  • Scoped, least privilege access to Zoho inventory resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

No, you can get started immediately using Composio's built-in Zoho inventory app. For production, we recommend configuring your own OAuth credentials.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Zoho inventory.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Zoho inventory tool your agent needs.Free to start.

Start building