Drop the Callio MCP server into Cursor, Claude, Antigravity, or any MCP-compatible client and your agent can call 184 APIs through one Callio key.
Model Context Protocol (MCP) is how tools like Cursor and Antigravity connect to external capabilities. The editor starts a small MCP server; the AI can call tools that server exposes (instead of you wiring one integration per API).
How requests route from your editor configuration through Callio to provider APIs.
You add Callio MCP server to your local config and set your CALLIO_API_KEY.
Cursor or Antigravity launches the server via stdio. It registers under Settings → MCP with three tools.
The agent calls search_apis or get_api_info to explore Callio's integrations.
To execute, the agent triggers call_api which securely forwards requests through our HTTPS proxy.
We dynamically attach your encrypted credentials (BYOK) at the proxy layer and complete the call safely.
One tool per vendor would mean hundreds of MCP tools cluttering your context. Callio exposes discover → describe → call so the agent can dynamically use any integrated API without requiring new MCP releases.
Restart your MCP server (e.g. Cursor: Command Palette → MCP restart, or restart your editor) to reload environment variables and keys. Check the server panel to confirm a green status.
Full reference: Documentation → MCP
Anthropic's coding agent
~/.claude/claude_desktop_config.jsonAI-powered code editor
.cursor/mcp.jsonAI development platform
MCP SettingsSign up at callio.dev and generate an API key from your dashboard.
Go to API KeysCopy this JSON into your MCP configuration file. Replace the API key with your own.
{
"mcpServers": {
"callio": {
"command": "npx",
"args": ["-y", "callio-mcp"],
"env": {
"CALLIO_API_KEY": "callio_your_key_here"
}
}
}
}Claude Code: ~/.claude/claude_desktop_config.json
Cursor: .cursor/mcp.json
Antigravity: MCP Settings panel
Your agent now has 3 powerful tools. Just ask in natural language:
Discover and browse 184 APIs by name, category, or description.
Get full details — endpoints, parameters, examples, auth info.
Execute any API call. Auth, rate limits, and routing all handled.
Get started in under 2 minutes. Free accounts include 5 proxy requests/month; paid plans add more.
Get Started