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:
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:
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:
claude mcp add-json scavio '{
"type": "http",
"url": "https://mcp.scavio.dev/mcp",
"headers": {
"x-api-key": "YOUR_SCAVIO_API_KEY"
}
}'Verify the connection:
claude mcp listClaude Desktop
- Open Claude Desktop
- Go to Settings > Developer > Edit Config
- Add Scavio to your
claude_desktop_config.json:
{
"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):
{
"mcpServers": {
"scavio": {
"type": "http",
"url": "https://mcp.scavio.dev/mcp",
"headers": {
"x-api-key": "YOUR_SCAVIO_API_KEY"
}
}
}
}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:
{
"mcpServers": {
"scavio": {
"type": "http",
"url": "https://mcp.scavio.dev/mcp",
"headers": {
"x-api-key": "YOUR_SCAVIO_API_KEY"
}
}
}
}- Save the file and refresh Windsurf
VS Code (GitHub Copilot)
- Create
.vscode/mcp.jsonin your project root:
{
"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:
{
"mcpServers": {
"scavio": {
"type": "http",
"url": "https://mcp.scavio.dev/mcp",
"headers": {
"x-api-key": "YOUR_SCAVIO_API_KEY"
}
}
}
}- Save and Cline will auto-detect the new server
Zed Editor
- Open Settings (
Cmd+,) - Navigate to the Assistant section
- Add Scavio under MCP servers:
{
"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:
{
"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