How to Use the Arcadia Utility Cloud MCP in OpenAI Agents SDK
Build production utility tracking agents with OpenAI Agents SDK. Auto-discover accounts and validate meter reads with built-in guardrails.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Arcadia Utility Cloud MCP to OpenAI Agents SDK
Create your Vinkius account to connect Arcadia Utility Cloud 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.
Discover Utility Accounts via MCP Server
The `list_accounts` tool feeds available Arcadia Utility Cloud endpoints directly into your OpenAI agent context. Running this function lets your system map out active utility connections before attempting any data extraction. You get an array of active account IDs that subsequent agent handoffs can process in parallel. Tracing these MCP discovery calls happens automatically in your OpenAI dashboard. Passing the Vinkius endpoint to `MCPServerStreamableHttp` ensures your agent knows exactly which accounts exist without hardcoding configurations. Your deployed product handles dynamic account additions without requiring code deploys.
Extract Meter Data with Guardrails
Calling `get_meter_data` through the MCP server pulls raw consumption metrics for specific utility hardware. Your specialized analytics agent requests this data, and the framework validates the request parameters before execution. Getting historical usage numbers allows your system to detect anomalies or calculate carbon footprints. Caching tool lists improves performance when querying hundreds of meters. Setting `cacheToolsList=True` in the Agent constructor prevents redundant discovery calls during heavy data extraction. The system pulls the metrics efficiently while maintaining strict safety constraints on how often the API gets hit.
Audit Statements in Production
Extracting billing metadata requires the `list_statements` and `get_statement` functions. These tools give your financial agents the ability to pull invoice dates, amounts, and periods across all tracked utilities. Fetching this data through the SDK means you can route high-value bills to human reviewers while auto-approving standard charges. Production environments demand reliability when handling financial records. The Vinkius ephemeral sandbox ensures that your statement queries run in an isolated V8 environment. Your agent retrieves the billing details, processes the ledger entry, and the sandbox vanishes immediately.
Set up Arcadia Utility Cloud 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 Arcadia Utility Cloud tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives Arcadia Utility Cloud tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate Arcadia Utility Cloud 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="Arcadia Utility Cloud Agent",
instructions="You have access to Arcadia Utility Cloud 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 Arcadia. 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 Arcadia Utility Cloud 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 Arcadia Utility Cloud MCP today
We host it, we monitor it, we maintain it. You just paste one token.