Scavio AI
Real-time search API for AI agents. Search Google, Amazon, Walmart, and YouTube with 9 tools -- product search, product details, video search, transcripts, and more. Build price comparison agents, retail arbitrage tools, content research pipelines, and brand monitors. 500 free credits/month.
MCP Integration
The Model Context Protocol (MCP) is an open standard for connecting AI assistants to external tools and data sources. Scavio runs an MCP server that gives any compatible client access to 9 tools covering Google Search, Amazon, Walmart, and YouTube. Setup takes under 2 minutes.
Prerequisites
- Get your API key at dashboard.scavio.dev
- Replace
YOUR_SCAVIO_API_KEYin the examples below with your actual key
Claude Code
Run this single command in your terminal:
Bash
Copy
claude mcp add --transport http scavio https://mcp.scavio.dev/mcp \
--header "x-api-key: YOUR_SCAVIO_API_KEY"
To add it to a shared project config (checked into version control), use --scope project:
Bash
Copy
claude mcp add --transport http --scope project scavio https://mcp.scavio.dev/mcp \
--header "x-api-key: YOUR_SCAVIO_API_KEY"
Alternatively, add the JSON config directly:
Bash
Copy
claude mcp add-json scavio '{
"type": "http",
"url": "https://mcp.scavio.dev/mcp",
"headers": {
"x-api-key": "YOUR_SCAVIO_API_KEY"
}
}'
Verify the connection:
Bash
Copy
claude mcp list
Claude Desktop
- Open Claude Desktop
- Go to Settings > Developer > Edit Config
- Add Scavio to your
claude_desktop_config.json:
JSON
Copy
{
"mcpServers": {
"scavio": {
"type": "http",
"url": "https://mcp.scavio.dev/mcp",
"headers": {
"x-api-key": "YOUR_SCAVIO_API_KEY"
}
}
}
}
- Save and restart Claude Desktop
Config file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Cursor
- Open Cursor and go to Settings > Tools & MCP
- Click + Add New MCP Server
- Select type HTTP and enter:
- Name:
scavio - URL:
https://mcp.scavio.dev/mcp - Headers:
x-api-key: YOUR_SCAVIO_API_KEY
- Name:
- Click Save
Or manually edit .cursor/mcp.json in your project root (or ~/.cursor/mcp.json for global):
JSON
Copy
Windsurf
- Open Windsurf and click the hammer icon in Cascade
- Click Configure to open the MCP config
- Add Scavio to
~/.codeium/windsurf/mcp_config.json:
JSON
Copy
- Save the file and refresh Windsurf
VS Code (GitHub Copilot)
- Create
.vscode/mcp.jsonin your project root:
JSON
Copy
{
"servers": {
"scavio": {
"type": "http",
"url": "https://mcp.scavio.dev/mcp",
"headers": {
"x-api-key": "YOUR_SCAVIO_API_KEY"
}
}
}
}
- Open the Command Palette (
Ctrl+Shift+P/Cmd+Shift+P) - Run MCP: List Servers to verify the connection
For global setup, add the same config to your VS Code user settings under mcp.servers.
ChatGPT
ChatGPT supports remote MCP servers through its Apps & Connectors feature:
- Go to ChatGPT Settings > Apps & Connectors
- Click Add custom connector
- Enter the MCP server URL:
https://mcp.scavio.dev/mcp - Configure authentication with your API key
- Save and start using Scavio tools in your chats
ChatGPT MCP support requires a Plus or Team plan and may require OAuth configuration depending on your setup.
Cline (VS Code Extension)
- Open VS Code with Cline installed
- Click the MCP Servers icon in the Cline sidebar
- Click Configure MCP Servers
- Add Scavio to the config:
JSON
Copy
- Save and Cline will auto-detect the new server
Zed Editor
- Open Settings (
Cmd+,) - Navigate to the Assistant section
- Add Scavio under MCP servers:
JSON
Copy
{
"assistant": {
"mcp_servers": {
"scavio": {
"type": "http",
"url": "https://mcp.scavio.dev/mcp",
"headers": {
"x-api-key": "YOUR_SCAVIO_API_KEY"
}
}
}
}
}
Any MCP-Compatible Client
Scavio works with any tool that supports the Model Context Protocol. The universal config:
JSON
Copy
{
"type": "http",
"url": "https://mcp.scavio.dev/mcp",
"headers": {
"x-api-key": "YOUR_SCAVIO_API_KEY"
}
}
| Detail | Value |
|---|---|
| Transport | HTTP (Streamable HTTP) |
| URL | https://mcp.scavio.dev/mcp |
| Authentication | API key via x-api-key header |
Available Tools
Once connected, your AI assistant can use these 9 tools:
| Tool | Description |
|---|---|
| search_google | Web search with structured results, news, images, maps, and knowledge graph |
| search_amazon | Search Amazon product listings with price and sort filters |
| get_amazon_product | Get full Amazon product details by ASIN |
| search_walmart | Search Walmart product listings with price and delivery filters |
| get_walmart_product | Get full Walmart product details by product ID |
| search_youtube | Search YouTube videos, channels, and playlists |
| get_youtube_metadata | Get video metadata (title, views, likes, duration) |
| get_youtube_transcript | Get full timestamped video transcripts |
| get_usage | Check your credit balance and plan details |
Troubleshooting
Server not connecting?
- Verify your API key is correct and active
- Check your credits with
get_usageor at dashboard.scavio.dev - Ensure the URL is exactly
https://mcp.scavio.dev/mcp(no trailing slash)
Tools not showing up?
- Restart your AI client after adding the config
- Check for JSON syntax errors in your config file
- Confirm the MCP server appears as "connected" in your client's MCP settings
Next Steps
- Google Search API -- full endpoint reference
- Amazon API -- product search and details
- YouTube API -- search, metadata, transcripts
- Walmart API -- product search and details
- Rate Limits -- per-plan limits and headers
Related Servers
Yoku
Enhance your applications, workflows and AI systems with reliable company data using our comprehensive Brand Identity API.
Amazon Product Advertising API
Integrate with the Amazon Product Advertising API to search for products and access product information.
Academic Paper Search
Search and retrieve academic paper information from multiple sources like Semantic Scholar and CrossRef.
Scholarly
Search for academic articles from scholarly vendors.
SkillFlow
AI skills marketplace MCP server - search, discover, and install AI agent skills from SkillFlow.builders marketplace
Veroq
Financial search & intelligence MCP server — 52 tools for verified market data, trading signals, fact-checking with evidence chains, and 1,061+ tickers. Ask anything, verify everything.
vox-pop
Public opinion for LLMs — HackerNews, Reddit, 4chan, Stack Exchange, Telegram. Zero API keys.
Open Custom Search API
Perform web searches using Google's Custom Search API.
Unsloth AI Documentation
Search and retrieve content from the Unsloth AI documentation.
Local Flow
A minimal, local, GPU-accelerated RAG server for document ingestion and querying.