FuseDesk MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with FuseDesk MCP or direct API to manage support cases, search contacts, review email conversations, and route customer chats through natural language.

FuseDesk logoFuseDesk
Api Key

FuseDesk is a customer support platform for managing cases, email conversations, contacts, departments, representatives, chats, and webhooks. It helps support teams keep customer conversations organized so issues get routed, tracked, and resolved faster.

27 Tools

Try FuseDesk now

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

TOOL ROUTER PLAYGROUND
FuseDesk
Try asking
TOOLS

Supported Tools

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

Add Case Note

Add an internal note or call record to a case and optionally change its status.

Bulk Merge Cases

Irreversibly merge multiple FuseDesk cases.

Bulk Update Cases

Apply an assignment, department, status, tag, CRM automation, CRM tag, or snooze operation to multiple FuseDesk cases.

Change Case Tag

Apply or remove one existing case tag from one FuseDesk case.

Close Chat

Irreversibly close a FuseDesk chat and end the live conversation.

Create Case

Open a support case for a customer in a FuseDesk department.

Create Case Tag

Create a reusable FuseDesk case tag.

Create Contact

Create a FuseDesk contact.

Get Case

Get one FuseDesk support case and its complete history by case ID.

Get Chat

Get one FuseDesk chat and its complete message history by chat UUID.

Get Contact

Get a FuseDesk contact by UUID, including current data from its linked CRM contact.

Get Department

Get a FuseDesk department's assignment, template, staleness, feedback, phone, and archive settings by department ID.

Get Email

Get one FuseDesk email by its numeric ID, including its complete body.

Get Rep

Get a FuseDesk rep's detailed profile, permissions, and signatures.

List Case Tags

List available FuseDesk case tags and their case counts.

List Chats

List active FuseDesk chats across connected chat platforms, including assignment links, recent-message context, and lifecycle state.

List Departments

List active, archived, or all FuseDesk departments using the current v2 representation.

List Reps

List active and disabled FuseDesk reps for assignment and ownership decisions.

List Webhooks

List configured FuseDesk webhook subscriptions.

Reply To Case

Send an external email reply on a FuseDesk case using supplied content or an existing reply template.

Search Cases

Search support cases by customer, assignment, status, text, and lifecycle dates, returning one controllable page.

Search Contacts

Search FuseDesk and linked CRM contacts by required text.

Search Emails

Search all or only unassigned FuseDesk emails, returning one controllable page with optionally truncated bodies.

Snooze Case

Snooze a case until an absolute date/time or FuseDesk relative-time expression.

Update Case

Change a case's content, customer link, assignment, department, or status.

Update Chat

Rename, transfer, relink, or mark a live FuseDesk chat seen or unseen.

Update Contact

Update a FuseDesk contact.

SETUP GUIDE

Connect FuseDesk 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 FuseDesk
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: 'Summarize recent FuseDesk email conversations for open support cases'
  }],
  maxSteps: 5,
});

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

Connect FuseDesk 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 FuseDesk 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 all open FuseDesk support cases assigned to the support department'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute FuseDesk actions with your Agent

Why Use Composio?

AI Native FuseDesk Integration

  • Supports both FuseDesk MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable support case and contact workflows
  • Rich coverage for reading, writing, and querying FuseDesk cases, emails, chats, departments, representatives, and webhooks

Managed Auth

  • Securely store FuseDesk API keys without hard-coding them in your agent code
  • Central place to manage, scope, and revoke FuseDesk access
  • Per user and per environment credentials so staging, production, and internal agents stay separate

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve FuseDesk execution reliability over time
  • Clear inputs and outputs help agents pick the right action for support cases, email conversations, contacts, and chats
  • 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 FuseDesk
  • Scoped, least privilege access to FuseDesk support resources
  • Full audit trail of agent actions across cases, contacts, chats, and email conversations to support review and compliance
FAQ

Frequently asked questions

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

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

Start building