Ecosystem
Scavio MCP Server
The Scavio MCP Server lets you use the Scavio API in your MCP clients. It exposes 33 tools — one per endpoint across Google, YouTube, Amazon, Walmart, Reddit, TikTok, and Instagram — to any Model Context Protocol client.
Works with any MCP client
Compatible with Claude Code, Claude Desktop, Cursor, Windsurf, and VS Code — and any other Model Context Protocol client.
Remote MCP Server
The hosted server needs no install. Point your client at the remote URL and pass your API key in the x-api-key header.
Bash
claude mcp add --transport http scavio https://mcp.scavio.dev/mcp \
--header "x-api-key: YOUR_SCAVIO_API_KEY"For clients configured via JSON:
JSON
{
"mcpServers": {
"scavio": {
"url": "https://mcp.scavio.dev/mcp",
"headers": { "x-api-key": "YOUR_SCAVIO_API_KEY" }
}
}
}Local Installation
Prefer to run it locally? The @scavio/mcp-server package runs over stdio — set SCAVIO_API_KEY in the client config.
JSON
{
"mcpServers": {
"scavio": {
"command": "npx",
"args": ["-y", "@scavio/mcp-server"],
"env": { "SCAVIO_API_KEY": "YOUR_SCAVIO_API_KEY" }
}
}
}See the MCP Integration guide for per-client setup (Claude Code, Claude Desktop, Cursor, Windsurf, VS Code, and more).