Quickstart guide
Orbit MCP Server lets you search for and integrate publicly available APIs for any task you want to accomplish. Connect your AI agent to the Orbit MCP Server so your AI agent handles the search-and-integrate flow automatically.
You can also call the Orbit API directly with curl.Your AI agent can use these endpoints to search for and integrate publicly available APIs that fit your task description.
Connect agents to Orbit
Claude
To use the Orbit MCP Server with Claude, run the following command in your terminal:
Describe your task to Claude, and it automatically searches for and integrates public APIs that fit your task description.
Cursor
Add this to ~/.cursor/mcp.json for global use, or .cursor/mcp.json inside one project:
VS Code
Add this to VS Code:
Codex
Add this to Codex:
Then describe your task to your connected agent. It automatically searches for and integrates public APIs that fit your task description — no manual search/integrate calls needed.
Use Orbit endpoints with your AI agent
Your AI agent can use the Orbit endpoints to search for and integrate public APIs that fit your task description.
Search
The POST /v1/search endpoint takes a plain language description of the task you want to do and returns a list of public API endpoints with an id and evaluation summary for each endpoint. The evaluation summary assesses how well each API fits the task.
Integrate
Select the API that fits best and pass its id and resourceType as typeto the POST /v1/integrate endpoint. The integrate endpoint then generates and returns a taskBrief with instructions for how to use the selected API.
Examples
In Orbit, put your task description in the q field of the search endpoint.
cURL
Request body
You’ll get a list of public API endpoints with an evaluation summary. An abbreviated sample response looks like this:
In the integrate endpoint, describe what you want to do in task. Then copy the selected result’s id and resourceType into the integrate request’s resources array as id and type.
cURL
Request body
The integrate endpoint returns a taskBrief with instructions for how to use the selected API.