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 11 tools covering Google Search, Amazon, Walmart, YouTube, and Reddit. 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 11 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 |
| search_reddit | Search Reddit posts with sort and cursor-based pagination |
| get_reddit_post | Get a full Reddit post and its threaded comments by URL |
| 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
- Reddit API -- post search and threaded comments
- Rate Limits -- per-plan limits and headers
Похожие серверы
Local Research MCP Server
A private, local research assistant that searches the web and scrapes content using DuckDuckGo.
Sci-Hub MCP Server
Search and access academic papers from Sci-Hub by DOI, title, or keyword.
GeoRanker
Access GeoRanker's SEO and keyword research tools for advanced search engine optimization analysis.
Local RAG
Privacy-first local RAG server for semantic document search without external APIs
Reexpress
Enable Similarity-Distance-Magnitude statistical verification for your search, software, and data science workflows
1ly MCP
Enable AI agents to discover, launch tokens, pay for, and sell APIs and resources using x402
Releasebot
Releasebot finds and watches release note sources from hundreds of products and companies.
Scholarly
Search for academic articles from scholarly vendors.
Google Maps MCP Server
Integrates Google Maps for route planning, traffic analysis, and cost estimation.
Brave Search
An MCP server for the Brave Search API, providing web and local search capabilities via a streaming SSE interface.