Botbaba MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Botbaba MCP or direct API to automate conversations, manage chatbot flows, send messages, and analyze chat data through natural language.

Botbaba logoBotbaba
Api Key

Botbaba is a platform for building, managing, and deploying conversational AI chatbots across messaging channels. It streamlines chatbot automation, making it easier to integrate AI into customer interactions.

42 Tools

Try Botbaba now

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

TOOL ROUTER PLAYGROUND
Botbaba
Try asking
TOOLS

Supported Tools

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

Shopify Cart Creation Simulator

Tool to simulate a Shopify cart creation webhook payload.

Cart Creation Shopify Webhook

Tool to receive Shopify Cart Creation webhooks.

Cart Update Shopify Webhook

Tool to forward Shopify cart update events to BotBaba.

Shopify Checkout Creation Webhook Receiver

Tool to receive Shopify checkout creation webhook events.

Checkout Update Shopify Webhook

Tool to forward Shopify checkout/update events to Botbaba.

Delete a broadcast campaign

Tool to delete a broadcast campaign.

Delete Contact

Tool to delete a contact.

Delete a conversation flow

Tool to delete a conversation flow.

Delete Tag

Tool to delete a tag.

Delete Template

Tool to delete a message template.

Delete a webhook subscription

Tool to delete a webhook subscription.

Execute Bot Action

Tool to execute a bot action or workflow.

Execute Bot Action By User

Tool to execute a bot action for specific users.

Get Bot Widget Settings

Tool to retrieve widget configuration settings for a bot.

Get Broadcast

Tool to retrieve details of a specific broadcast.

Get BotBaba Contact

Tool to fetch a BotBaba contact by its ID.

Get Contact Analytics

Tool to retrieve analytics data for contacts.

Get Filename from Path

Tool to extract the filename from a file path.

Get Flow

Tool to retrieve details of a specific flow.

Get Message

Tool to retrieve status of a specific message.

Get Message Analytics

Tool to retrieve analytics data for a specific message.

Get Template

Tool to retrieve details of a specific template.

Get Webhook

Tool to retrieve details of a specific webhook.

List Broadcasts

Tool to list all broadcast campaigns.

List Flows

Tool to list all conversation flows with their IDs and metadata.

List Tags

Tool to list all tags.

List Templates

Tool to retrieve a paginated list of templates.

List Webhook Event Types

Tool to list available webhook event types.

List Webhooks

Tool to list all registered webhooks.

Receive Shopify Order Cancellation Webhook

Tool to receive Shopify order cancellation webhooks.

Order Fulfillment Simulator

Tool to simulate a Shopify order fulfillment webhook payload.

Order Fulfillment Shopify Webhook

Tool to receive Shopify Order Fulfillment webhooks.

Order Payment Shopify Webhook

Tool to receive Shopify Order Payment webhooks.

Send WhatsApp Template Message

Tool to forward/send a WhatsApp template message via Botbaba.

Shopify Checkout Creation Simulator

Tool to simulate a Shopify checkout creation webhook payload.

Shopify Checkout Update Simulator

Tool to simulate a Shopify checkout update webhook payload.

Update Contact

Tool to update an existing contact.

Update Tag

Tool to update an existing tag.

Update Template

Tool to update an existing message template.

Update Webhook

Tool to update an existing webhook.

Gupshup WhatsApp Webhook Event Simulator

Tool to simulate Gupshup WhatsApp webhook events.

Forward Gupshup Webhook Message

Tool to forward inbound WhatsApp webhook events from Gupshup to Botbaba.

SETUP GUIDE

Connect Botbaba 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: 'Create a new chatbot for customer support on WhatsApp' }],
  stopWhen: stepCountIs( 5 )
});

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

Connect Botbaba 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 Botbaba 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: 'Create a new chatbot for customer support on WhatsApp'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Botbaba actions with your Agent

Why Use Composio?

AI Native Botbaba Integration

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

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Botbaba 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 Botbaba
  • Scoped, least privilege access to Botbaba resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, Botbaba requires you to configure your own API key. Once set up, Composio handles secure credential storage and API request handling for you.

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 Botbaba.It takes 30 seconds.

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

Start building