Blooio MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Blooio MCP or direct API to send messages, manage chats, update contacts, and analyze account activity through natural language.

Blooio logoBlooio
Api Key

Blooio is a stable v2 API platform for messaging, chats, contacts, groups, phone numbers, and account analytics. It gives teams a clean way to build reliable communication workflows without stitching together fragile custom APIs.

26 Tools

Try Blooio now

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

TOOL ROUTER PLAYGROUND
Blooio
Try asking
TOOLS

Supported Tools

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

Add Contact Tags

Add or reactivate one or more free-form tags on a contact.

Create Contact

Create a contact from an E.

Create Group

Create a messaging group, optionally linking an existing iMessage chat and recording its members; new contacts may be created for unknown members.

Delete Contact

Soft-delete one contact identified by E.

Delete Group

Soft-delete a group, remove its members, and exit its linked iMessage chat when one exists.

Get Account

Return the authenticated organization, assigned devices, and message usage without exposing the API-key identifier.

Get Chat

Return detailed counts, participant context, and latest-message metadata for one conversation.

Get Contact

Return one contact by E.

Get Contact Capabilities

Check whether a contact can receive iMessage, SMS, or FaceTime before choosing a communication path.

Get Group

Return one messaging group by its grp_ identifier.

Get Message

Return one message with content, reactions, delivery status, protocol, errors, and inline-reply context.

Get Poll Results

Return a poll's definition, option vote counts, and total votes.

Get Risk Summary

Return the cached fleet risk rollup.

List Chats

Search and page through conversations, ordered by recent activity or oldest activity.

List Contacts

Search and page through organization contacts by identifier or name.

List Group Members

Page through the members recorded for a messaging group.

List Groups

Search and page through messaging groups by name.

List Messages

Page through messages in one chat with direction, time-window, and ordering filters.

List Numbers

List sender phone numbers assigned to the connected API key and their availability state.

Mark Chat Read

Mark every message in a chat as read and irreversibly send an externally visible read receipt to the sender; the receipt cannot be unsent.

Remove Contact Tags

Soft-delete one or more exact tags from a contact sequentially; if a later removal fails, earlier removals remain applied.

Send Message

Irreversibly send one or multiple text, attachment, multipart, or inline-reply messages; multi-recipient sends may create or reuse an unnamed group and may incur messaging charges.

Send Poll

Irreversibly send an interactive native iMessage poll to a chat.

Set Message Reaction

Add or remove a classic tapback or emoji reaction on a specific or relative message in a chat.

Update Contact

Set or clear the display name of an existing contact.

Update Group

Rename a group and, when linked, synchronize the new name to its iMessage chat.

SETUP GUIDE

Connect Blooio MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

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

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for Blooio
3

Connect to AI Agent

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

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.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: 'Send a Blooio message to the latest new contact asking if they need help'
  }],
  maxSteps: 5,
});

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

Connect Blooio 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 Blooio 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: 'List recent unread Blooio chats and identify which contacts need a reply'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Blooio actions with your Agent

Why Use Composio?

AI Native Blooio Integration

  • Supports both Blooio MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable messaging, chat, contact, group, phone number, and analytics actions
  • Rich coverage for reading, writing, and querying your Blooio communication data

Managed Auth

  • Bring your Blooio API key once, then let Composio handle secure storage and request authentication
  • Use auth_configs.create() and connected_accounts.link() to connect Blooio accounts without hard-coding keys in agent code
  • Central place to manage, scope, and revoke Blooio access per user and environment

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know which Blooio action ran, when, and on whose behalf
  • MCP sessions can be created with mcp.create() for chat-first agent workflows

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Blooio
  • Scoped, least privilege access to Blooio messages, chats, contacts, groups, phone numbers, and analytics
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, Blooio requires you to configure your own API key credentials. 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 Blooio.It takes 30 seconds.

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

Start building