Mailcoach MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Mailcoach MCP or direct API to send campaigns, manage subscriber lists, automate email sequences, and monitor deliverability through natural language.

Mailcoach logoMailcoach
Api Key

Mailcoach is an email marketing platform for managing campaigns and subscribers. It helps you reach your audience efficiently with streamlined email delivery and automation.

56 Tools

Try Mailcoach now

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

TOOL ROUTER PLAYGROUND
Mailcoach
Try asking
TOOLS

Supported Tools

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

Add Mailcoach Campaign

Tool to create a new Mailcoach campaign.

Add Email List

Tool to create a new email list.

Add suppression

Tool to add a suppression entry.

Add Tag to Email List

Tool to create a new tag within a specific email list.

Add Tags to Subscriber

Add tags to a subscriber for segmentation and targeting.

Add Transactional Email Template

Creates a new email template in Mailcoach via POST /api/templates.

Append to Subscriber Import

Tool to append CSV data to an existing subscriber import.

Confirm Subscriber

Confirm a subscriber's subscription to an email list (double opt-in confirmation).

Create Segment for Email List

Tool to create a new segment within an email list.

Create Subscriber Import

Creates a new subscriber import in Mailcoach.

Delete Campaign

Tool to delete a campaign by UUID.

Delete Email List

Tool to delete an email list by UUID.

Delete Segment from Email List

Tool to delete a segment from an email list.

Delete Subscriber

Permanently delete a subscriber by UUID from Mailcoach.

Delete Subscriber Import

Tool to delete a subscriber import by its UUID.

Delete Suppression

Tool to delete a suppression entry by UUID.

Delete Tag from Email List

Tool to delete a tag from an email list.

Delete Template

Tool to delete a template by UUID.

Delete Transactional Mail

Tool to delete a transactional mail send record by its UUID.

Get All Campaigns

Tool to retrieve all campaigns.

Get All Sent Items

Tool to retrieve all sent items.

Get All Subscriber Imports

Tool to retrieve all subscriber imports.

Get All Suppressions

Retrieve a paginated list of all email suppression entries from Mailcoach.

Get All Tags

Tool to retrieve all tags for a specific email list.

Get All Templates

Tool to retrieve all templates.

Get All Transactional Email Templates

Tool to retrieve all transactional email templates.

Get Campaign Bounces

Tool to retrieve bounced subscribers of a sent campaign with pagination support.

Get Campaign Clicks

Tool to retrieve clicks from a sent campaign with pagination support.

Get Campaign Opens

Tool to retrieve all opens for a sent campaign with pagination support.

Get Campaign Unsubscribes

Tool to retrieve unsubscribes from a sent campaign with pagination support.

Get Email Lists

Tool to retrieve all email lists.

Get Segment

Tool to retrieve details of a specific segment.

Get Specific Campaign

Tool to retrieve details of a specific Mailcoach campaign.

Get Specific Email List

Retrieve detailed information about a specific Mailcoach email list by its UUID.

Get Specific Subscriber

Tool to retrieve a specific subscriber.

Get Specific Suppression

Tool to retrieve a specific suppression entry.

Get Specific Tag

Tool to retrieve details of a specific tag.

Get Specific Template

Retrieves the full details of a specific Mailcoach email template by its UUID.

Get Subscriber Import

Tool to retrieve details of a specific subscriber import by UUID.

Get Transactional Mail

Tool to retrieve details of a specific transactional email by its UUID.

Get User

Tool to retrieve details of the currently authenticated user.

List Segments

Tool to retrieve all segments for a specific email list.

List Subscribers

Tool to list all subscribers from a specific email list with pagination support.

List Transactional Mails

Tool to retrieve all transactional email records.

Remove Tags from Subscriber

Tool to remove tags from a subscriber.

Resend Subscriber Confirmation

Tool to resend confirmation email to a subscriber.

Start Subscriber Import

Starts processing a subscriber import that is in 'draft' status.

Subscribe To Email List

Subscribe (or update) a subscriber to an email list.

Unsubscribe Subscriber

Unsubscribe a subscriber from their email list in Mailcoach.

Update Campaign

Tool to update an existing Mailcoach campaign.

Update Email List

Tool to update an existing email list.

Update Segment

Tool to update an existing segment within an email list.

Update Subscriber

Tool to update a subscriber.

Update Subscriber Import

Tool to update an existing subscriber import.

Update Tag

Tool to update an existing tag within an email list.

Update Template

Updates an existing email template in Mailcoach.

SETUP GUIDE

Connect Mailcoach 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: 'Create a new email list for product updates' }],
  stopWhen: stepCountIs(5)
});

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

Connect Mailcoach 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 Mailcoach 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: 'Create a new email campaign for my weekly newsletter'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Mailcoach actions with your Agent

Why Use Composio?

AI Native Mailcoach Integration

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

Managed Auth

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

Frequently asked questions

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

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

Start building