ecommerce
Zoho Inventory MCP Integration for OpenAI Agents SDK
Connect Zoho Inventory to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Zoho Inventory to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Zoho Inventory MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-zoho_inventory": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=zoho_inventory",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=zoho_inventory --write=deny Why Use KosmoKrator Here
Expose only Zoho Inventory instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Zoho Inventory Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Zoho Inventory integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__zoho_inventory__zoho_inventory_list_items | zoho_inventory.zoho_inventory_list_items | Read | List inventory items (products) from Zoho Inventory. Supports pagination and optional filtering by status (active, inactive, all). |
integration__zoho_inventory__zoho_inventory_get_item | zoho_inventory.zoho_inventory_get_item | Read | Get detailed information about a specific inventory item (product) by its Zoho Inventory ID. |
integration__zoho_inventory__zoho_inventory_list_orders | zoho_inventory.zoho_inventory_list_orders | Read | List sales orders from Zoho Inventory. Supports pagination and optional filtering by status (draft, confirmed, void, open, invoiced, partially_invoiced, all). |
integration__zoho_inventory__zoho_inventory_get_order | zoho_inventory.zoho_inventory_get_order | Read | Get detailed information about a specific sales order by its Zoho Inventory ID. |
integration__zoho_inventory__zoho_inventory_list_shipments | zoho_inventory.zoho_inventory_list_shipments | Read | List shipments from Zoho Inventory. Supports pagination to browse through shipment records. |
integration__zoho_inventory__zoho_inventory_list_packages | zoho_inventory.zoho_inventory_list_packages | Read | List packages from Zoho Inventory. Supports pagination to browse through package records. |
integration__zoho_inventory__zoho_inventory_get_current_user | zoho_inventory.zoho_inventory_get_current_user | Read | Get details of the currently authenticated Zoho Inventory user. Useful for verifying credentials and checking permissions. |