How to Use the Emplifi MCP in OpenAI Agents SDK
Build production-ready social media agents with the OpenAI Agents SDK using Emplifi's real-time care automation and post metrics.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Emplifi MCP to OpenAI Agents SDK
Create your Vinkius account to connect Emplifi 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.
Emplifi MCP Server for specialized care agents
You don't want a single massive agent handling both angry customers and influencer analytics. With this integration, you can spin up a dedicated customer support agent that only calls `list_care_automation_rules` and `list_content_classification_labels`. The SDK's handoff mechanics let your frontline bot route complex ticket escalations straight to a specialized handler. That separation of concerns keeps your context windows clean. When the specialized agent takes over, it runs `quick_cx_health_audit` to get the immediate brand sentiment context before drafting a reply. OpenAI's built-in guardrails validate the routing logic so your agent doesn't accidentally change classification tags on a whim.
Trace every social post metric
Production systems need observability. When your agent pulls data via `get_social_post_metrics` or `list_social_posts`, the OpenAI dashboard logs the exact payload and execution time. You see exactly what the agent saw when it decided to flag a post for human review. This matters when you audit automated decisions. If an agent misinterprets a spike in negative comments, you can step through the trace, look at the output from `list_listening_dashboards`, and adjust your prompt constraints. No more guessing why the bot ignored a trending crisis.
Map your organizational hierarchy
Your agent needs to know who owns what before it escalates an issue. By calling `list_organization_team_members`, the agent maps out your internal support tiers. It cross-references those roles against the active `list_social_profiles` to figure out which regional manager needs to approve a controversial response. You plug the MCP Server right into the agent constructor. Set cacheToolsList to true, and the SDK auto-discovers all ten endpoints instantly. Your system handles the API routing while you focus on defining the handoff rules between your human team and the autonomous workers.
Set up Emplifi 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 Emplifi tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives Emplifi tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate Emplifi 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="Emplifi Agent",
instructions="You have access to Emplifi 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 Emplifi. 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 Emplifi 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 Emplifi MCP today
We host it, we monitor it, we maintain it. You just paste one token.