How to Use the Mixmax MCP in OpenAI Agents SDK
Trigger Mixmax email sequences and track calendar availability directly from your OpenAI Agents SDK pipelines.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Mixmax MCP to OpenAI Agents SDK
Create your Vinkius account to connect Mixmax to OpenAI Agents SDK and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Safely trigger sequences via OpenAI Agents SDK
Using `add_recipient_to_sequence` with this MCP Server lets your OpenAI Agents SDK system add leads to Mixmax cold outbound tracks based on live CRM signals. The SDK validation guardrails inspect the payload before sending, preventing your agent from enrolling duplicate contacts into active sequences. You register the Mixmax server URL in your Python agent setup, allowing OpenAI Agents SDK to auto-discover sequence schemas and prevent payload errors. This architecture prevents common agent hallucinations, ensuring only verified emails hit your active Mixmax sequences.
Track reminders and events with full SDK tracing
Running `create_reminder` and `list_reminders` via the OpenAI Agents SDK gives you a clear audit trail of all agent-initiated Mixmax follow-ups on the OpenAI dashboard. The agent checks for existing open tasks before spinning up new ones, eliminating double-booking or spamming prospects. If a prospect replies, the agent intercepts the event via `list_events` and routes the task to a specialized agent using the SDK's built-in handoff mechanisms. This multi-agent handoff preserves the state of the conversation without losing the context of the initial outreach.
Auto-discover calendar links and shared snippets
Querying `list_appointment_links` and `list_snippets` allows your OpenAI Agents SDK agent to insert the correct Mixmax calendar link and personalized text block into every outgoing message. The agent reads the exact templates your human sales team uses, ensuring brand consistency. Setting cacheToolsList to true in your OpenAI SDK configuration ensures instant access to these Mixmax resources without repetitive network round-trips. Your agent pulls current availability via `get_availability` instantly, dropping latency down to milliseconds.
Set up Mixmax MCP in OpenAI Agents SDK
Prerequisites
- Python 3.10+ installed
-
openai-agentspackage (pip install openai-agents) - Active Vinkius subscription with a valid endpoint token
- 1
Install the SDK
Run
pip install openai-agentsto install the OpenAI Agents SDK. The MCP integration is built-in — no extra dependencies needed. - 2
Connect via SSE transport
Use
MCPServerSsewith your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. The SDK auto-discovers all Mixmax tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives Mixmax tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate Mixmax tools and returns structured results. Copy the full example on the right to get started.
import asyncio
from agents import Agent, Runner
from agents.mcp import MCPServerSse
async def main():
async with MCPServerSse(
url="https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
) as server:
agent = Agent(
name="Mixmax Agent",
instructions="You have access to Mixmax tools.",
mcp_servers=[server],
)
result = await Runner.run(agent, "List recent transactions")
print(result.final_output)
asyncio.run(main()) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Mixmax. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Mixmax MCP in OpenAI Agents SDK
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Mixmax MCP today
We host it, we monitor it, we maintain it. You just paste one token.