How to Use the IPRoyal (Proxy Services) MCP in OpenAI Agents SDK
Control IPRoyal proxies programmatically from OpenAI Agents SDK with built-in guardrails to prevent accidental bandwidth drain.
Works with every AI agent you already use
…and any MCP-compatible client
Connect IPRoyal (Proxy Services) MCP to OpenAI Agents SDK
Create your Vinkius account to connect IPRoyal (Proxy Services) 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.
Auto-Discover Proxy Tools in OpenAI Agents SDK
The `openai-agents-sdk` exposes the IPRoyal MCP Server tools directly to your agent workflows without manual registration. By setting `cacheToolsList=True` during initialization, your agent immediately maps the entire proxy control plane. It can check account balances via `get_profile` or query active packages with `list_orders` during runtime execution. This means you don't write boilerplate code to connect proxy tools to your agent. The MCP server connection over HTTP allows your agent to dynamically inspect proxy endpoints and route scraper traffic based on real-time availability.
Guarded Credential Rotation and Whitelisting
Secure your proxy network by wrapping `change_credentials` inside OpenAI's native agent guardrails. When your agent detects a potential leak or a blocked connection, it executes credential rotation safely. The SDK traces the exact execution path, ensuring new credentials match your strict security policy before they apply. To avoid exposing credentials in code, have your agent run `add_whitelist_ip` to authorize your scraper's current IP address dynamically. Once the job finishes, the agent invokes `remove_whitelist_ip` to clean up access. This lifecycle is fully logged in your OpenAI dashboard.
Smart Geo-Targeting via Multi-Agent Handoffs
Build a dedicated routing agent that queries `get_availability` to find open residential nodes across different regions. If a specific country is saturated, the routing agent hands off the task to a scraping agent with a custom connection string. The scraper agent uses `generate_proxy_string` with the target country parameter to bypass local blocks. The agent queries `list_countries` to construct valid geographic rules on the fly. Because OpenAI Agents SDK manages these handoffs natively, your scrapers switch target regions without dropping active sessions.
Set up IPRoyal (Proxy Services) 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 IPRoyal (Proxy Services) tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives IPRoyal (Proxy Services) tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate IPRoyal (Proxy Services) 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="IPRoyal (Proxy Services) Agent",
instructions="You have access to IPRoyal (Proxy Services) 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 IPRoyal. 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 IPRoyal (Proxy Services) 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 IPRoyal (Proxy Services) MCP today
We host it, we monitor it, we maintain it. You just paste one token.