Clarify MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Clarify MCP or direct API to query and update CRM records, create tasks and lists, analyze pipelines, and manage deals and meetings through natural language.

Clarify MCP logoClarify MCP
Dcr Oauth

Clarify MCP is a CRM platform for managing companies, people, deals, meetings, tasks, lists, and campaigns. Use it to centralize CRM data and streamline sales and marketing workflows.

46 Tools

Try Clarify MCP now

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

TOOL ROUTER PLAYGROUND
Clarify MCP
Try asking
TOOLS

Supported Tools

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

Add-comment

Add a comment to a supported entity.

Create-campaign

Create a new email campaign (sequence) in DRAFT mode.

Create-email-draft

Create an email draft in the user's connected Gmail or Outlook account for them to review, edit, and send themselves.

Create-or-update-agent

Create or update an agent, an autonomous AI assistant.

Create-or-update-artifact

Create a new artifact or write a new version to an existing artifact.

Create-or-update-calendar-event

Create a new calendar event or update an existing one.

Create-or-update-custom-object

Create a new custom object type or update an existing one in the workspace.

Create-or-update-fields

Create new fields or update existing field metadata (name, options, AI config) on any entity (company, person, deal, meeting, or custom object).

Create-or-update-list

Create or update a dynamic list: a saved view whose membership is defined by a SQL query.

Create-or-update-records

Create or update records in Clarify.

Create-or-update-workflow

Create a new workflow or update an existing one.

Delete-agent

Delete an agent by its ID.

Delete-artifact

Delete an artifact by its ID.

Delete-calendar-event

Cancel a calendar event.

Delete-campaign

Delete a campaign by its ID.

Delete-custom-object

Delete a custom object type by its entity identifier.

Delete-fields

Delete one or more custom fields from an existing object (built-in entities like person, company, deal, or custom objects like c_my_object).

Delete-list

Delete a list (saved view) by its ID.

Delete-records

Delete one or more records by their IDs.

Delete-workflow

Delete a workflow by its ID.

Find-leads

Search Clarify's built-in prospect database of companies and people to find new leads matching criteria like industry, location, headcount, job title, seniority, and funding stage, and save (publish) a search the user wants to keep.

Get-agent-runs

List an agent's runs, executions, invocations, and past run history, or fetch one run with its full transcript.

Get-agents

List agents visible to the current user, or fetch a single agent by ID.

Get-artifact-component-doc

Get the full prop contract for one or more Clarify design-system components available to artifacts — each component's summary, a usage snippet, and every prop with its type and allowed values.

Get-artifact-source

Read the current source of an existing artifact — the JSX of its applied version, plus its name and description.

Get-calendar-events

List the current user's calendar events in a time range.

Get-campaign-recipients

List the individual people enrolled in a campaign, with their per-person engagement — who opened, who clicked, who replied, and when.

Get-campaigns

List campaigns in the workspace, or fetch a single campaign by ID with full details.

Get-current-user

Get information about the current authenticated user, including their timezone.

Get-lists

Get list metadata (saved views) for an entity type, or fetch a single list by ID.

Get-records

Retrieve detailed information about specific records by their IDs.

Get-schema

Get the schema for Clarify entities.

Get-workflow-runs

Get execution runs for a workflow.

Get-workflows

Get and search workflows in the workspace, or fetch a single workflow with its full configuration.

Import-leads

Import leads from a tam_company or tam_person search into Clarify.

Import-meeting-transcript

Import a meeting transcript from an external source (Granola, Notion, Circleback).

Manage-access

Manage who can access a specific object — a list, meeting, message, or record (deal, company, person, or a custom object) — by granting, updating, revoking, or reading its access grants, or reassigning its owner.

Merge-records

Merge two or more records into a single primary record in Clarify.

Query-analytics

Execute read-only ClickHouse SQL against the analytics event log.

Query-data

Execute PostgreSQL queries to retrieve data from Clarify.

Read-context

Read Clarify product knowledge and documentation.

Respond-to-calendar-event

RSVP to a calendar event you've been invited to.

Run-workflow

Start a workflow run.

Send-email

Send an email immediately through the user's connected email account.

Submit-feedback

Submit concise feature requests or feedback about MCP tools.

Update-campaign

Update an existing email campaign: rename it, change its target list, adjust the sender, edit its email steps, or configure send time windows.

SETUP GUIDE

Connect Clarify 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 Clarify MCP
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: 'YOUR_SPECIFIC_PROMPT_HERE'
  }],
  maxSteps: 5,
});

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

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

Why Use Composio?

AI Native Clarify MCP Integration

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

Managed Auth

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

Use Clarify MCP with any AI Agent Framework

Choose a Framework you want to connect Clarify MCP with

FAQ

Frequently asked questions

Yes, Clarify MCP requires you to configure your own Dcr Oauth credentials. Once set up, Composio handles secure credential storage and management 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 Clarify MCP.It takes 30 seconds.

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

Start building