How to Use the NASA Exoplanets — Worlds Beyond Our Solar System MCP in OpenAI Agents SDK
Explore 5,700+ exoplanets with production-grade agents built on the OpenAI Agents SDK.
Works with every AI agent you already use
…and any MCP-compatible client
Connect NASA Exoplanets — Worlds Beyond Our Solar System MCP to OpenAI Agents SDK
Create your Vinkius account to connect NASA Exoplanets — Worlds Beyond Our Solar System 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 Potentially Habitable Worlds
The `get_habitable_zone` tool pulls a list of exoplanets where liquid water might exist. It's the starting point for any search for life. With the OpenAI Agents SDK, this isn't just a data pull. Your agent can fetch this list, then automatically hand it off to a second, specialized agent to cross-reference against stellar flare data. The SDK's guardrails ensure each step is validated before execution, building a reliable discovery pipeline instead of just running a script.
Your OpenAI Agents SDK Research Assistant
Use the `query_confirmed_planets` tool to search NASA's entire catalog. Your agent can now find planets by name, discovery method, or the year they were found, and get back hard numbers like orbital period and mass. This isn't a black box. The OpenAI dashboard gives you full tracing on agent activity. You can see exactly why your agent chose to search for planets from the 'TESS' facility and how it used the results. It’s a clear, auditable process for doing research.
Analyze Kepler and TESS Data
The `get_transit_planets` tool delivers raw data from the most successful planet-hunting missions. You get a clean list of every world discovered by watching for the dip in a star's light. This MCP Server provides the raw data; your agent system turns it into answers. Because the SDK supports agent handoffs, one agent can pull the transit list while another begins crunching the numbers to find, for example, planets with the shortest orbital periods. The whole process runs automatically.
Set up NASA Exoplanets — Worlds Beyond Our Solar System 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 NASA Exoplanets — Worlds Beyond Our Solar System tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives NASA Exoplanets — Worlds Beyond Our Solar System tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate NASA Exoplanets — Worlds Beyond Our Solar System 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="NASA Exoplanets — Worlds Beyond Our Solar System Agent",
instructions="You have access to NASA Exoplanets — Worlds Beyond Our Solar System 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 NASA. 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 NASA Exoplanets — Worlds Beyond Our Solar System 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 NASA Exoplanets — Worlds Beyond Our Solar System MCP today
We host it, we monitor it, we maintain it. You just paste one token.