How to Use the Freshcaller MCP in OpenAI Agents SDK
Connect your OpenAI Agents SDK to Freshcaller. Manage your call center with traceable, production-ready agents.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Freshcaller MCP to OpenAI Agents SDK
Create your Vinkius account to connect Freshcaller 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 Your Support Staff
This toolset lets your agent act like a shift supervisor. You can get a full roster of your support staff with `list_agents` and then drill down into specific user data with `get_agent_details`. From there, you can check team assignments using `list_agent_teams` or get specifics on a group with `get_team_details`. It's what you need to build agents that can route tasks, check availability, or just give you a quick status update on who's active. This MCP server gives your agent direct access to that ground truth.
Audit Calls and Recordings
Stop digging through dashboards to find a specific call. Give your agent a date range and have it pull a log with `list_calls`. Find the one you need, and then grab its full metadata using `get_call_details`. If a recording exists, your agent can get a direct link to the audio file with `get_call_recording`. This is perfect for building automated QA systems or an agent that flags calls for review based on duration or other properties. It turns a manual search into a single command.
Automate Reporting with an MCP Server
Your agent gets direct access to high-level call center performance data. Use `list_account_metrics` to get a snapshot of things like average answer speed or total abandoned calls. It's the raw data you'd normally have to find in a report. Your agent can also manage your phone number inventory. It can check the numbers you own with `list_my_numbers` and then search for new ones to provision with `list_buyable_numbers`. This lets you build a bot that monitors call volume and suggests adding new lines when you're getting busy.
Set up Freshcaller 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 Freshcaller tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives Freshcaller tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate Freshcaller 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="Freshcaller Agent",
instructions="You have access to Freshcaller 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 Freshcaller. 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 Freshcaller 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 Freshcaller MCP today
We host it, we monitor it, we maintain it. You just paste one token.