SureContact MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with SureContact MCP or direct API to manage contacts, update deals, organize campaigns, and analyze reports through natural language.

SureContact logoSureContact
Api Key

SureContact is a marketing automation and CRM platform for contacts, deals, campaigns, lists, forms, purchases, and reports. It helps teams centralize customer data and run targeted workflows without jumping between tools.

26 Tools

Try SureContact now

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

TOOL ROUTER PLAYGROUND
SureContact
Try asking
TOOLS

Supported Tools

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

Create Campaign Draft

Create a campaign in draft status without sending or scheduling email.

Create Landing Page Draft

Create a landing page in draft status without publishing it or making a public URL live.

Create Segment

Create a tag or contact list.

Create Task

Create an actionable workspace task linked to one or more contacts and optionally assign it.

Enroll Contact In Sequence

Enroll one contact in an active sequence by UUID or email.

Get Campaign Performance

Get campaign details, live sending progress, or one page of per-contact delivery and engagement results without changing campaign state.

Get Contact

Retrieve one contact by UUID or email address without changing it.

Get Report

Read one SureContact analytics report for a selected date range: overview, contact growth, email sending, email engagement, link clicks, unsubscribes, bounces, ecommerce revenue, products, or campaign summary.

List Campaigns

Search and page through email campaigns by lifecycle status without changing them.

List Contacts

Search and page through contacts in the connected workspace without changing them.

List Contact Timeline

Page through either notes or activities for one contact, newest first, without changing the timeline.

List Form Submissions

Search and page through submissions captured by one form without changing them.

List Marketing Assets

List one page of forms, email templates, or landing pages available for campaigns and lead capture.

List Purchases

Page through tracked purchases with optional contact, status, and source filters.

List Segments

List tags or lists used to segment contacts, with search and archive filtering where supported.

List Tasks

Page through workspace tasks without changing completion or assignment state.

List Workflows

List automations or email sequences available in the workspace without starting them.

Log Contact Interaction

Create a note or activity on a contact's timeline.

Record Purchase

Record an external purchase in SureContact without charging a payment method.

Send Email

Queue one email for immediate asynchronous delivery to one external recipient.

Set Contact Status

Change a contact's deliverability or subscription status.

Set Task Completion

Mark a task done or reopen it as not done.

Start Contact Automation

Start an active automation for one contact.

Unenroll Contact From Sequence

Synchronously cancel a contact's active executions in a sequence and mark its subscriber state as cancelled.

Update Contact Memberships

Attach or detach one or more tags or lists from a contact.

Upsert Contact

Create a contact when the email is new or update the existing contact with supplied fields.

SETUP GUIDE

Connect SureContact 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 SureContact
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: 'Create a SureContact contact for Jane Doe at Acme Corp with jane@example.com'
  }],
  maxSteps: 5,
});

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

Connect SureContact 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 SureContact 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 SureContact contacts created this week and summarize their companies'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute SureContact actions with your Agent

Why Use Composio?

AI Native SureContact Integration

  • Supports both SureContact MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable contact, deal, and campaign workflows
  • Rich coverage for reading, writing, and querying your SureContact CRM data

Managed API Key Auth

  • Securely store SureContact API keys without hard-coding secrets in your agent code
  • Central place to manage, scope, and revoke SureContact access
  • Per user and per environment credentials so your CRM workflows stay clean and safe

Agent Optimized Design

  • Tools are shaped so AI agents can understand SureContact objects like contacts, companies, deals, campaigns, and lists
  • Execution logs show what ran, when it ran, and which user triggered it
  • Reliable tool schemas reduce guesswork when agents create or update CRM records

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access SureContact
  • Scoped, least privilege access to SureContact resources
  • Full audit trail of agent actions across contacts, deals, campaigns, forms, and reports
FAQ

Frequently asked questions

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

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

Start building