Unione Integration for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Unione MCP or direct API to send emails, fetch delivery status, manage campaigns, and organize mailing lists through natural language.
Unione Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Supported Tools

Tools
UniOne Email BalanceTool to retrieve current account balance.
Cancel Scheduled EmailTool to cancel a scheduled transactional email by its job id.
UniOne Email Domain ManagementTool to manage sender domains in unione.
Get Email EventTool to retrieve details of a specific email event by its id.
UniOne Email Event TypesTool to retrieve supported email event types.
Get Email Send JobTool to retrieve detailed information about a specific email send job.
UniOne Email List (Export)Tool to export email events within a specified time frame.
UniOne Email Event LogTool to initiate an asynchronous export of email events (event dump).
UniOne Email PlanTool to retrieve current subscription plan details.
UniOne Email PricingTool to retrieve current email pricing.
UniOne Email QuotaTool to retrieve current email sending quota.
Resend Sent EmailTool to resend a previously sent email by its job id.
UniOne Email ResubscribeTool to resubscribe a recipient who previously unsubscribed.
Resume Paused EmailTool to resume a paused transactional email by its job id.
UniOne Email ScheduleTool to schedule a transactional email up to 24 hours ahead.
UniOne Email SMTP ConfigurationTool to retrieve smtp server details and credentials.
UniOne Email StatisticsTool to retrieve email sending statistics over a specified time range.
UniOne Email UnsubscribeTool to unsubscribe an email from future emails.
Validate Email AddressTool to validate an email address.
Batch Email ValidationTool to validate multiple email addresses in a batch.
Resend Email Validation ResultsTool to resend results of an email validation request.
UniOne Email Validate ResultTool to retrieve the detailed result of an email validation request.
Retry Email ValidationTool to retry an email validation request.
UniOne Email Validate StatusTool to retrieve the current status of an email validation request.
UniOne Email Webhook TypesTool to retrieve supported email webhook event types.
Create Event DumpTool to create an asynchronous csv event dump.
UniOne Event Dump ListTool to retrieve the full list of event dumps.
Schedule EmailTool to schedule a transactional email up to 24 hours ahead.
Suppression ListTool to return the suppression list since a given date.
Delete TagTool to delete a specific tag.
UniOne Tag ListTool to retrieve all user-defined tags.
UniOne Template ListTool to list email templates.
Set TemplateTool to set or update an email template.
Delete Email Validation RequestTool to delete an email validation request.
Get Event DumpTool to retrieve the contents of a specific event dump.
Set WebhookTool to set or edit a webhook event notification handler.

Connect Unione MCP Tool with your Agent

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 Unione tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Export email events from last week')
        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

Connect Unione API Tool with your Agent

Python
TypeScript

Install Composio

python
pip install composio_openai
Install the Composio SDK

Initialize Composio and Create Tool Router Session

python
from openai import OpenAI
from composio import Composio
from composio_openai import OpenAIResponsesProvider

composio = Composio(provider=OpenAIResponsesProvider())
openai = OpenAI()
session = composio.create(user_id='your-user-id')
Import and initialize Composio client, then create a Tool Router session

Execute Unione Tools via Tool Router with Your Agent

python
tools = session.tools
response = openai.responses.create(
  model='gpt-4.1',
  tools=tools,
  input=[{
    'role': 'user',
    'content': 'Check my UniOne email account balance and plan details.'
  }]
)
result = composio.provider.handle_tool_calls(
  response=response,
  user_id='your-user-id'
)
print(result)
Get tools from Tool Router session and execute Unione actions with your Agent

Why Use Composio?

AI Native Unione Integration

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

Managed Auth

  • Built-in API key management—no need to handle raw secrets
  • Central place to manage, scope, and revoke Unione 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 Unione
  • Scoped, least privilege access to Unione resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

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

Yes, Unione 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
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
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.