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
相关服务器
agentdeals
MCP server aggregating free tiers, startup credits & developer tool deals. 4 tools, 54 categories, 1,525+ offers.
NPI Registry
Search the National Provider Identifier (NPI) registry for healthcare providers and organizations in the United States.
Yahoo Finance
An MCP server for querying Yahoo Finance data using the yfinance library.
Unsplash
Search for pictures on Unsplash using the Unsplash API.
US Business Data MCP Server
Search US business entities across 17 states, building permits in 400+ cities, SEC filings, and SAM.gov contracts.
newsmcp
Real-time world news for AI agents — events clustered from hundreds of sources, classified by 12 topics and 30+ regions, ranked by importance. Free, no API key.
Greenbook
A lightweight Model Context Protocol (MCP) server that exposes Greenbook data and tools for market research professionals, analysts, and related workflows.
Unsloth AI Documentation
Search and retrieve content from the Unsloth AI documentation.
USGS Quakes
Access earthquake data from the USGS Quakes API using natural language queries.
Simple Files Vectorstore
Provides semantic search across local files by creating vector embeddings from watched directories.