How to Use the Agile CRM MCP in OpenAI Agents SDK
Build production agents that manage Agile CRM contacts and deals, backed by the safety and tracing of the OpenAI Agents SDK.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Agile CRM MCP to OpenAI Agents SDK
Create your Vinkius account to connect Agile CRM 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.
Manage Contacts with Confidence
This server gives your agent direct tools to work with your CRM contacts. Use `search_contact_by_email` to find a specific person or `list_contacts` to get the whole roster. Your agent doesn't just get raw data; it gets a structured list to work with. Here's the key: the OpenAI Agents SDK is built for production. Its guardrails can validate agent actions *before* they run. This means your agent won't misinterpret a task and try to perform an unsupported action on your Agile CRM contacts. You get full visibility in the OpenAI dashboard.
Track Your Sales Pipeline
Give your agent visibility into your sales pipeline. The `list_deals` tool pulls all current opportunities from Agile CRM. Your agent can then analyze these deals or look for patterns. Combine this with `list_tasks` to see what needs to be done next. You can design specialized agents that hand off work—one agent identifies high-value deals, then passes them to another that flags associated tasks for a human teammate. Every step is logged, so you can trace the agent's entire decision process.
Auto-Discover Tools with This MCP Server
Connecting your agent to Agile CRM is straightforward. Just point the `MCPServerStreamableHttp` client at the Vinkius endpoint. There's no need to manually define each tool and its parameters. The OpenAI Agents SDK automatically discovers the `list_contacts`, `list_deals`, and other tools exposed by this MCP Server. It reads the function signatures and descriptions, so the agent knows exactly what it can do and how to do it. Set `cacheToolsList=True` and you're ready for production workloads.
Set up Agile CRM 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 Agile CRM tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives Agile CRM tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate Agile CRM 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="Agile CRM Agent",
instructions="You have access to Agile CRM 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 Agile CRM. 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 Agile CRM 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 Agile CRM MCP today
We host it, we monitor it, we maintain it. You just paste one token.