How to Use the edX MCP in OpenAI Agents SDK
Connect your OpenAI Agent to the edX catalog to find courses from MIT, Harvard, and more.
Works with every AI agent you already use
…and any MCP-compatible client
Connect edX MCP to OpenAI Agents SDK
Create your Vinkius account to connect edX 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.
Find Courses and Programs
Connect this MCP Server and your agent can immediately use `search_courses` to find classes on any topic. It can filter by subject, language, or even specific schools like Berkeley and IBM. Once it finds a course, it gets a direct enrollment link. Your agent can also look for longer-term programs. The `search_programs` tool lets it find MicroMasters and Professional Certificates. It's a simple way to have your agent map out an entire learning path, not just find one-off classes.
Get Specific Course Details
The `get_course` tool lets your agent pull everything for a single course: prerequisites, weekly effort, and pacing. This is how your agent goes from a search result to a concrete recommendation. It’s not just a title; it’s actionable data. With `get_course_run`, your agent can check for currently active or upcoming sessions. This prevents it from suggesting a course that isn't available. The OpenAI Agent framework's guardrails can even be configured to require this check before presenting an option to the user.
Explore the edX Ecosystem with your Agent
This isn't just for searching. Your agent can use `get_organizations` to list all 160+ institutions, from universities to companies. It can see which schools offer the most courses on a given topic. The `get_subjects` tool provides a full map of the edX curriculum. Before even running a search, your agent can understand the available categories, making its discovery process smarter and more targeted. It's about giving your OpenAI Agent the context to make better decisions.
Set up edX 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 edX tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives edX tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate edX 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="edX Agent",
instructions="You have access to edX 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 edX. 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 edX 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 edX MCP today
We host it, we monitor it, we maintain it. You just paste one token.