Quo MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Quo MCP or direct API to manage calls, send messages, search contacts, and create follow-up tasks through natural language.

Quo logoQuo
Api Key

Quo is a business phone platform for calls, SMS, contacts, and team conversations. It helps teams manage customer communication from one shared, searchable workspace.

36 Tools

Try Quo now

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

TOOL ROUTER PLAYGROUND
Quo
Try asking
TOOLS

Supported Tools

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

Create Contact

Create a Quo contact with standard fields, optional custom fields, and external source metadata.

Create Task

Create a task linked to exactly one phone number, conversation, or activity.

Create Webhook

Create one unified webhook subscription for selected Quo events and return its signing secret, which must be stored securely.

Delete Contact

Permanently delete one Quo contact by ID.

Delete Task

Permanently delete one Quo task by ID.

Delete Webhook

Permanently delete one unified Quo webhook and revoke its signing secret.

Get Call

Get one call and its routing, participants, status, and timing details by ID.

Get Call Voicemail

Get voicemail processing status, transcript, duration, and recording URL for a Quo call.

Get Contact

Get one contact with default and custom fields by Quo contact ID.

Get Message

Get one message by Quo message ID, including its content, related IDs, participants, delivery status, and timestamps.

Get Phone Number

Get one Quo phone number and its assignments and restrictions by ID.

Get Task

Get one task and its current links, assignee, due date, and completion state.

Get User

Get one workspace user by Quo user ID.

Get Webhook

Get one unified Quo webhook by its numeric ID.

Get Webhook Delivery

Get the payload and attempt details for one Quo webhook delivery event.

List Call Recordings

List recording segments for a Quo call in chronological order.

List Calls

List calls between a Quo number and one external participant with optional user and creation-time filters.

List Contact Custom Fields

List the workspace's contact custom-field definitions for constructing valid contact values.

List Contacts

List contacts, optionally filtered by external IDs or source, with stable-v1 phone and custom fields.

List Conversations

List inbox conversations with optional phone-number, user, creation-time, update-time, and inactive-state filters.

List Messages

List messages exchanged by a Quo phone number and one or more participants, optionally filtered by sender or creation time.

List Phone Numbers

List Quo phone numbers and their assigned users, calling restrictions, and messaging restrictions.

List Tasks

List workspace tasks with cursor-controlled pagination.

List Users

List workspace users and return one cursor-controlled page.

List Webhook Deliveries

List one page of delivery events for a unified Quo webhook, optionally filtered by status, event type, or dispatch time.

List Webhooks

List unified Quo webhooks across call, message, contact, task, and integration event families.

Send Message

Send an irreversible text message from a Quo number to one or more recipients.

Send Message and Mark Conversation Done

Send an irreversible text message from a Quo number and move the resulting inbox conversation to Done.

Set Conversation Status

Set a Quo conversation to read, done, or open.

Set Task Assignee

Assign or unassign a Quo user on a task.

Set Task Completion

Complete or reopen a Quo task.

Set Task Conversation Link

Link or unlink a Quo task and conversation.

Set Task Due Date

Set or remove a Quo task's due date.

Update Contact

Patch selected standard, custom, or source fields on an existing Quo contact.

Update Task

Replace both the title and description of an existing Quo task.

Update Webhook

Partially update a unified Quo webhook.

SETUP GUIDE

Connect Quo 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 Quo
3

Connect to AI Agent

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

const composio = new Composio({ apiKey: 'your-composio-api-key' });
const session = await composio.create('your-user-id');

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: 'List missed Quo calls from yesterday and create follow-up tasks'
  }],
  maxSteps: 5,
});

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

Connect Quo 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 Quo Tools via Tool Router with Your Agent

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');

const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'List recent Quo conversations with unread messages and summarize who needs a reply'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Quo actions with your Agent

Why Use Composio?

AI Native Quo Integration

  • Supports both Quo MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable call, message, contact, and task actions
  • Rich coverage for reading, writing, and querying your Quo workspace data

Managed Auth

  • Secure API key handling without hard-coding Quo credentials in your agent code
  • Central place to manage, scope, and revoke Quo access
  • Per user and per environment credentials for safer production deployments

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Clear tool schemas help agents understand when to list calls, send messages, update contacts, or create tasks
  • 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 Quo
  • Scoped, least privilege access to Quo resources like calls, messages, contacts, and tasks
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

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

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

Start building