Supportbee MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Supportbee MCP or direct API to fetch support tickets, draft and send replies, label emails, and automate ticket management through natural language.

Supportbee logoSupportbee
Api Key

SupportBee is a web-based email support tool for organizing customer support emails. It streamlines team collaboration and keeps customer conversations efficient and accessible.

41 Tools

Try Supportbee now

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

TOOL ROUTER PLAYGROUND
Supportbee
Try asking
TOOLS

Supported Tools

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

Add Label to Ticket

Tool to add a label to a ticket.

Archive SupportBee Ticket

Tool to archive a SupportBee ticket by its ID.

Assign Ticket to Team

Assigns a ticket to a team in SupportBee.

Create Ticket Comment

Creates an internal comment on a ticket in SupportBee.

Create Consequence

Creates a new consequence for rules automation in SupportBee.

Create Forwarding Email

Create a new forwarding email address for the company in SupportBee.

Create Filter

Creates a filter in SupportBee by linking a rule with a consequence.

Create Rule

Creates a new automation rule in SupportBee to automatically process tickets based on conditions.

Create Snippet

Create a reusable snippet (canned response) in SupportBee.

Create SupportBee Ticket

Creates a new support ticket in SupportBee with a subject, content, and requester details.

Create Ticket Reply

Create a reply to a support ticket in SupportBee.

Create SupportBee User

Invites a new user to your SupportBee account.

Delete Snippet

Permanently delete a snippet by its ID from SupportBee.

Delete SupportBee Ticket

Permanently delete a trashed ticket from SupportBee.

Fetch Forwarding Emails

Retrieve all forwarding email addresses configured for the company.

Fetch SupportBee Labels

Tool to retrieve all custom labels.

Fetch Snippets

Fetches saved response snippets (canned responses/templates) from SupportBee.

Fetch SupportBee Teams

Retrieves all teams in the SupportBee account.

Get Avg First Response Time Report

Tool to retrieve average first response time data points over time.

Get Replies Count Report

Retrieves replies count report data for the company.

Get Ticket

Tool to retrieve a specific SupportBee ticket by its ID.

Get Tickets Count Report

Tool to get ticket count data points over time.

List Ticket Comments

Retrieves all internal comments (private agent notes) for a specific ticket.

List Ticket Replies

Lists all replies on a specific support ticket in SupportBee.

List Tickets

Tool to list tickets from SupportBee.

List SupportBee Users

Retrieves all users and customer groups in your SupportBee company.

Mark SupportBee Ticket as Answered

Marks a SupportBee ticket as answered by adding the 'answered' status.

Mark SupportBee Ticket as Spam

Tool to mark a SupportBee ticket as spam.

Mark SupportBee Ticket as Unanswered

Marks a SupportBee ticket as unanswered by removing its 'answered' status.

Remove Label From Ticket

Tool to remove a label from a ticket.

Search SupportBee Tickets

Tool to search SupportBee tickets.

Show Ticket Reply

Tool to fetch a specific reply for a SupportBee ticket.

Show SupportBee User or Customer Group

Retrieves details of a SupportBee user (agent/admin) or customer group by their ID.

Trash SupportBee Ticket

Tool to trash a SupportBee ticket by its ID.

Unarchive SupportBee Ticket

Tool to unarchive a SupportBee ticket by its ID.

Unassign Ticket from Team

Tool to un-assign a ticket from its assigned team.

Unassign User From Ticket

Tool to un-assign a ticket from its assigned user/agent.

Unmark SupportBee Ticket as Spam

Tool to unmark a SupportBee ticket as spam.

Untrash SupportBee Ticket

Restores a trashed SupportBee ticket back to active status.

Update Snippet

Update an existing snippet (canned response) in SupportBee.

Update SupportBee User

Update an existing SupportBee user's profile information including name, email, role, avatar, or signature.

SETUP GUIDE

Connect Supportbee 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: 'Archive ticket with ID 12345 in Supportbee' }],
  stopWhen: stepCountIs( 5 )
});

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

Connect Supportbee 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 Supportbee 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: 'Archive all resolved tickets from yesterday'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Supportbee actions with your Agent

Why Use Composio?

AI Native Supportbee Integration

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

Managed Auth

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

Frequently asked questions

Yes, Supportbee 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 Supportbee.It takes 30 seconds.

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

Start building