OpenAI Agent Builder Integration
Integrate Scavio with OpenAI Agent Builder to give agents you compose on the canvas real-time search across Google, YouTube, Amazon, Walmart, Reddit, TikTok, and Instagram -- via the hosted Scavio MCP server.
Fully self-serve
Introduction
Agent Builder connects to external tools through remote MCP servers. Point an MCP node at mcp.scavio.dev and your agent gets the full Scavio tool catalog. It is a cost-effective Tavily and SerpAPI alternative.
Step-by-Step Integration Guide
Step 1: Get your API key
Grab a key at dashboard.scavio.dev.
Step 2: Add an MCP node
In Agent Builder, add an MCP node, click + server, and enter:
- URL:
https://mcp.scavio.dev/mcp - Authentication: Custom headers --
x-api-key: YOUR_SCAVIO_API_KEY
Step 3: Import the tools
Import the tools from the server. The full Scavio catalog becomes available to the agent.
Using the same server from the Agents SDK
Building with code instead of the canvas? Connect the same server:
from agents import Agent
from agents.mcp.server import MCPServerStreamableHttp
server = MCPServerStreamableHttp(
name="scavio",
params={
"url": "https://mcp.scavio.dev/mcp",
"headers": {"x-api-key": "YOUR_SCAVIO_API_KEY"},
},
)
agent = Agent(name="Search Assistant", mcp_servers=[server])Prefer typed function tools? Install the openai-agents-scavio package.
Available Tools
The full Scavio catalog -- Google Search, News, Maps, Shopping, YouTube, Amazon, Walmart, Reddit, TikTok, and Instagram. See the MCP reference.
Benefits of Scavio + Agent Builder
- Self-serve: paste a URL and key, done.
- Full catalog: every Scavio tool available.
- Canvas or code: same server both ways.
- Cost-effective: most calls cost a single credit.
Next Steps
- MCP Integration -- all clients and the full catalog
- OpenAI Agents SDK -- typed tools