Zoho bigin MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Zoho bigin MCP or direct API to update deals, track pipeline stages, manage contacts, and automate sales follow-ups through natural language.

Zoho bigin logoZoho bigin
Oauth2

Zoho Bigin is a simple CRM designed for small businesses to manage pipelines and customer relationships. It helps you organize deals, track progress, and streamline sales processes in one place.

54 Tools

Try Zoho bigin now

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

TOOL ROUTER PLAYGROUND
Zoho bigin
Try asking
TOOLS

Supported Tools

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

Add Records

Tool to add new records to a module.

Add Tags to Records

Tool to add tags to a specific record in a module.

Create Bulk Read Job

Tool to create a bulk read job for exporting large amounts of data asynchronously.

Create Notes

Tool to create notes and associate them with records in Zoho Bigin.

Create Record Notes

Tool to create new notes for a specific record.

Create Tags

Tool to create tags for a module.

Delete Attachment

Tool to delete an attachment from a record.

Delete Note

Tool to delete a note from a specific record.

Delete Notes

Tool to delete multiple notes from Zoho Bigin.

Delete Record

Tool to delete a specific record from a module.

Delete Record Photo

Tool to delete a profile photo from a record.

Delete Records

Tool to delete records from a module.

Delink Related Records

Tool to delete the association between a module record and related list records.

Disable Notifications

Tool to disable instant notifications for one or more channels.

Download Attachment

Tool to download an attachment from a record.

Download Bulk Read Result

Tool to download the bulk read job result in ZIP format (containing CSV or ICS export).

Download Record Photo

Tool to download the profile photo associated with a specific record.

Enable Notifications

Tool to enable instant webhook notifications for module events in Bigin.

Get All Notes

Tool to retrieve the list of notes associated with records.

Get Attachments

Tool to retrieve attachments for a record.

Get Bulk Read Job Status

Tool to retrieve the details of a bulk read job performed earlier.

Get Custom View

Tool to get the metadata of a specific custom view configured in a module.

Get Custom Views

Tool to retrieve the list of custom views available for a module.

Get Deleted Records

Tool to get a list of deleted records in a module.

Get Fields

Tool to retrieve field metadata for a Bigin module.

Get Layout

Tool to retrieve details of a specific layout by layout ID.

Get Layouts

Tool to retrieve the list of layouts available for a module.

Get Module Metadata

Tool to retrieve metadata of a specific module by its API name.

Get Modules

Tool to retrieve a list of all modules.

Get Notification Details

Tool to retrieve information about enabled notifications.

Get Organization

Tool to retrieve organization details including name, ID, currency, time zone, and other settings.

Get Profiles

Tool to retrieve the list of available profiles and their properties in an organization.

Get Record

Tool to retrieve details of a specific record in a module using the record ID.

Get Record Notes

Tool to retrieve the list of notes associated with a specific record.

Get Records

Tool to retrieve records from a Bigin module.

Get Records Count

Tool to get the count of records in a Bigin module.

Get Related Lists Metadata

Tool to retrieve the list of related lists metadata for a module.

Get Related Records

Tool to retrieve related records associated with a specific record in a module.

Get Roles

Tool to retrieve the list of available roles and their properties in an organization.

Get Team Pipeline Records

Tool to retrieve pipeline records from Team Pipelines in Zoho Bigin.

Get User

Tool to retrieve details of a specific user using the user identification.

Get Users

Tool to retrieve the list of users in the organization.

Search Records

Tool to search for records in a Bigin module using various criteria.

Update Note

Tool to update an existing note for a specific record in a module.

Update Notification Details

Tool to update notification channel details in Zoho Bigin.

Update Notification Info

Tool to update specific notification information without losing existing data.

Update Records

Tool to update existing records in a module.

Update Related Records

Tool to update related records associated with a specific record in a module.

Update User

Tool to update details of an existing user by user ID.

Update Users

Tool to update details of multiple users in an organization.

Upload Attachment

Tool to upload an attachment to a record.

Upload Organization Photo

Tool to upload or update the brand logo or image for the current organization.

Upload Record Photo

Tool to upload a photo/image to a specific record (e.

Upsert Records

Tool to insert or update records in a module based on unique field values.

SETUP GUIDE

Connect Zoho bigin 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: 'List open deals in the pipeline' }],
  stopWhen: stepCountIs( 5 )
});

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

Connect Zoho bigin 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 bigin 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: 'Add a new contact named John Doe with email john@example.com to Zoho Bigin'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Zoho bigin actions with your Agent

Why Use Composio?

AI Native Zoho bigin Integration

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

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Zoho bigin 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 bigin
  • Scoped, least privilege access to Zoho bigin 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 bigin 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 bigin.It takes 30 seconds.

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

Start building