Omnisend MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Omnisend MCP or direct API to send marketing emails, trigger SMS campaigns, manage contact lists, and analyze campaign performance through natural language.
Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Omnisend Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Omnisend now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Add Cart ProductTool to add a product to a cart in Omnisend (v3 API).
Create BatchTool to create a new batch operation for multiple items.
Create CartTool to create a new shopping cart in Omnisend.
Create CategoryTool to create a new category in Omnisend.
Create OrderTool to create a new order in Omnisend v3 API.
Create or Update ContactTool to create or update a contact in Omnisend.
Create ProductTool to create a new product in the Omnisend product catalog.
Create Product CategoryTool to create a new product category in the Omnisend catalog.
Delete CartTool to delete a cart from Omnisend by its ID (v3 API).
Delete CategoryTool to remove a category from Omnisend by its ID.
Delete OrderTool to delete an order from Omnisend by its ID.
Delete ProductTool to remove a product from Omnisend by its ID.
Delete Product CategoryTool to remove a product category from Omnisend by its ID.
Get BatchesTool to retrieve a list of batch operations.
Get Batch InformationTool to retrieve information about a specific batch by ID.
Get Batch ItemTool to retrieve a specific item within a batch by batchID and itemID.
Get Batch ItemsTool to retrieve processed items of a specific batch by ID.
Get BrandTool to retrieve information about the current authenticated brand.
Get CartTool to retrieve a specific cart by ID from Omnisend v3 API.
Get CategoryTool to retrieve details of a specific category by ID.
Get ContactTool to retrieve details of a single contact by ID.
Get OrderTool to retrieve details of a specific order by ID.
Get ProductTool to retrieve details of a specific product by ID from Omnisend.
Get Product CategoryTool to retrieve a specific product category by ID.
List CampaignsTool to retrieve a paginated list of campaigns with optional filtering by status and type.
List CartsTool to retrieve a paginated list of carts with optional filtering.
List CategoriesTool to retrieve a paginated list of product categories.
List ContactsTool to retrieve a paginated list of contacts with optional filtering.
List EventsTool to retrieve all custom events created in Omnisend app.
List Product CategoriesTool to retrieve a paginated list of product categories from the Omnisend catalog.
List ProductsTool to retrieve a paginated list of products.
Remove Cart ProductTool to remove a product from a cart in Omnisend.
Replace CartTool to replace an existing cart in Omnisend using the v3 API.
Replace Cart ProductTool to replace a product in a cart using Omnisend v3 API.
Replace CategoryTool to replace a category's title by ID.
Replace OrderTool to completely replace an existing order in Omnisend.
Replace ProductTool to replace an existing product in the Omnisend catalog.
Send EventTool to send a customer event to Omnisend.
Update CartTool to partially update a cart in Omnisend (v3 API).
Update Cart ProductTool to update a product in a cart (v3 API).
Update ContactTool to update fields of an existing contact by ID.
Update Order StatusTool to partially update an order status in Omnisend (v3 API).
Update Product CategoryTool to update an existing product category title in Omnisend.
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Omnisend tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('List all contacts subscribed to email marketing campaigns')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent

Why Use Composio?

AI Native Omnisend Integration

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

Managed Auth

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

Frequently Asked Questions

Do I need my own developer credentials to use Omnisend with Composio?

Yes, Omnisend requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Used by agents from

Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.