How to Use the Canix ERP MCP in OpenAI Agents SDK
Build production-grade agents that manage your Canix ERP data with the OpenAI Agents SDK.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Canix ERP MCP to OpenAI Agents SDK
Create your Vinkius account to connect Canix ERP 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 Inventory from Seed to Sale
Your agent can check cannabis and non-cannabis inventory levels directly in Canix. It uses `list_inventory_packages` to see what's on hand and `get_package_details` to drill into specific batches. This isn't just a prototype; it's a live connection to your operations. The OpenAI Agents SDK's guardrails mean you can define rules before an agent acts on inventory data. For example, you can require human confirmation before an agent uses a tool that could modify stock levels, giving you a safety net for production systems.
Trace Cultivation and Plant Batches
Give your agent the ability to track your entire cultivation pipeline. It can pull lists of immature plant batches with `list_plant_batches` or monitor individual plants using `list_plants`. Need specifics on a single plant? The agent calls `get_plant_details`. With full tracing in the OpenAI dashboard, you see every single call your agent makes to the Canix MCP Server. This makes debugging complex workflows simple. You can see exactly which plant data was requested and what the response was.
Automate Sales Reporting with your OpenAI Agent
Connect your sales team's agent directly to your ERP. It can pull a full list of orders with `list_sales_orders` or check the status of a specific one using `get_sales_order`. No more switching between apps to find out if an order shipped. You can build specialized agents. One agent could monitor for new orders, while another handles fulfillment notifications. The SDK lets them hand off tasks, so your sales agent can trigger a logistics agent once an order is ready.
Set up Canix ERP 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 Canix ERP tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives Canix ERP tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate Canix ERP 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="Canix ERP Agent",
instructions="You have access to Canix ERP 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 Canix. 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 Canix ERP 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 Canix ERP MCP today
We host it, we monitor it, we maintain it. You just paste one token.