ScavioScavio
ProductPricingDocs
Sign InGet Started
Quick StartAPI & SDKsEcosystem

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 33 tools covering Google Search, Amazon, Walmart, YouTube, Reddit, TikTok, and Instagram. Setup takes under 2 minutes.

One server, every client

A single hosted server at https://mcp.scavio.dev/mcp gives any MCP-compatible client all 33 tools -- nothing to install, just add the URL and your API key.

Introduction

Scavio's remote MCP server is a cost-effective Tavily and SerpAPI alternative that any Model Context Protocol client can connect to over Streamable HTTP. Authenticate with your API key via the x-api-key header and your assistant gains real-time search across Google, YouTube, Amazon, Walmart, Reddit, TikTok, and Instagram. The sections below cover setup for the most common clients -- Claude Code, Claude Desktop, Cursor, Windsurf, VS Code, ChatGPT, Cline, Zed, and the Claude apps -- plus a universal config for anything else.

Prerequisites

  1. Get your API key at dashboard.scavio.dev
  2. Replace YOUR_SCAVIO_API_KEY in the examples below with your actual key

Claude Code

Run this single command in your terminal:

Bash
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
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
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
claude mcp list

Claude Desktop

  1. Open Claude Desktop
  2. Go to Settings > Developer > Edit Config
  3. Add Scavio to your claude_desktop_config.json:
JSON
{
  "mcpServers": {
    "scavio": {
      "command": "npx",
      "args": ["-y", "@scavio/mcp-server"],
      "env": {
        "SCAVIO_API_KEY": "YOUR_SCAVIO_API_KEY"
      }
    }
  }
}
  1. Save and restart Claude Desktop

Requires Node.js 20+.

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Claude (claude.ai and Cowork)

The Claude apps (claude.ai on web and Claude Cowork) support remote MCP servers as custom connectors:

  1. Go to Settings > Connectors
  2. Click Add custom connector
  3. Enter the MCP server URL: https://mcp.scavio.dev/mcp
  4. Configure authentication with your API key and save

Custom connectors require a paid Claude plan and may require additional auth configuration depending on your workspace. For the terminal, use the Claude Code command above.

Cursor

  1. Open Cursor and go to Settings > Tools & MCP
  2. Click + Add New MCP Server
  3. Select type HTTP and enter:
    • Name: scavio
    • URL: https://mcp.scavio.dev/mcp
    • Headers: x-api-key: YOUR_SCAVIO_API_KEY
  4. Click Save

Or manually edit .cursor/mcp.json in your project root (or ~/.cursor/mcp.json for global):

JSON
{
  "mcpServers": {
    "scavio": {
      "type": "http",
      "url": "https://mcp.scavio.dev/mcp",
      "headers": {
        "x-api-key": "YOUR_SCAVIO_API_KEY"
      }
    }
  }
}

Windsurf

  1. Open Windsurf and click the hammer icon in Cascade
  2. Click Configure to open the MCP config
  3. Add Scavio to ~/.codeium/windsurf/mcp_config.json:
JSON
{
  "mcpServers": {
    "scavio": {
      "type": "http",
      "url": "https://mcp.scavio.dev/mcp",
      "headers": {
        "x-api-key": "YOUR_SCAVIO_API_KEY"
      }
    }
  }
}
  1. Save the file and refresh Windsurf

VS Code (GitHub Copilot)

  1. Create .vscode/mcp.json in your project root:
JSON
{
  "servers": {
    "scavio": {
      "type": "http",
      "url": "https://mcp.scavio.dev/mcp",
      "headers": {
        "x-api-key": "YOUR_SCAVIO_API_KEY"
      }
    }
  }
}
  1. Open the Command Palette (Ctrl+Shift+P / Cmd+Shift+P)
  2. 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:

  1. Go to ChatGPT Settings > Apps & Connectors
  2. Click Add custom connector
  3. Enter the MCP server URL: https://mcp.scavio.dev/mcp
  4. Configure authentication with your API key
  5. 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)

  1. Open VS Code with Cline installed
  2. Click the MCP Servers icon in the Cline sidebar
  3. Click Configure MCP Servers
  4. Add Scavio to the config:
JSON
{
  "mcpServers": {
    "scavio": {
      "type": "http",
      "url": "https://mcp.scavio.dev/mcp",
      "headers": {
        "x-api-key": "YOUR_SCAVIO_API_KEY"
      }
    }
  }
}
  1. Save and Cline will auto-detect the new server

Zed Editor

  1. Open Settings (Cmd+,)
  2. Navigate to the Assistant section
  3. Add Scavio under MCP servers:
JSON
{
  "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
{
  "type": "http",
  "url": "https://mcp.scavio.dev/mcp",
  "headers": {
    "x-api-key": "YOUR_SCAVIO_API_KEY"
  }
}
DetailValue
TransportHTTP (Streamable HTTP)
URLhttps://mcp.scavio.dev/mcp
AuthenticationAPI key via x-api-key header

Available Tools

Once connected, your AI assistant can use these 33 tools:

Google Search

ToolDescription
search_googleWeb search with structured results, news, images, maps, and knowledge graph

YouTube

ToolDescription
search_youtubeSearch videos, channels, and playlists
get_youtube_metadataGet video metadata (title, views, likes, duration)

Amazon

ToolDescription
search_amazonSearch product listings with price and sort filters
get_amazon_productGet full product details by ASIN

Walmart

ToolDescription
search_walmartSearch product listings with price and delivery filters
get_walmart_productGet full product details by product ID

TikTok

ToolDescription
get_tiktok_profileGet user profile (bio, follower/following counts, likes)
get_tiktok_user_postsList a user's videos with stats
get_tiktok_videoGet detailed info for a single video
get_tiktok_video_commentsGet comments on a video
get_tiktok_comment_repliesGet replies to a specific comment
search_tiktok_videosSearch videos by keyword
search_tiktok_usersSearch users by keyword
get_tiktok_hashtagGet hashtag details and stats
get_tiktok_hashtag_videosList videos for a hashtag
get_tiktok_user_followersGet a user's follower list
get_tiktok_user_followingsGet a user's following list

Instagram

ToolDescription
get_instagram_profileGet user profile (bio, follower/following/post counts)
get_instagram_user_postsList a user's posts with pagination
get_instagram_user_reelsList a user's Reels with pagination
get_instagram_user_taggedList posts a user is tagged in
get_instagram_user_storiesGet a user's active stories
get_instagram_postGet a single post by URL, media_id, or shortcode
get_instagram_post_commentsGet comments on a post
get_instagram_comment_repliesGet replies to a specific comment
search_instagram_usersSearch users by keyword
search_instagram_hashtagsSearch hashtags by keyword
get_instagram_user_followersGet a user's follower list
get_instagram_user_followingsGet a user's following list

Reddit

ToolDescription
search_redditSearch posts by query with sort and pagination
get_reddit_postGet a full post with threaded comments by URL

Account

ToolDescription
get_usageCheck your credit balance, plan, and usage stats

Troubleshooting

Server not connecting?

  • Verify your API key is correct and active
  • Check your credits with get_usage or 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

Benefits of Scavio + MCP

  • Universal: works with any MCP-compatible client, from Claude Code to ChatGPT.
  • Comprehensive: 33 tools spanning Google, YouTube, Amazon, Walmart, Reddit, TikTok, and Instagram.
  • Zero install: a hosted remote server over Streamable HTTP -- just add the URL, no packages to manage.
  • Secure: authenticate with your API key via the x-api-key header; the model never handles credentials.

Next Steps

  • Google Search API -- full endpoint reference
  • YouTube API -- search and metadata
  • Amazon API -- product search and details
  • Walmart API -- product search and details
  • TikTok API -- profiles, videos, comments, and hashtags
  • Instagram API -- profiles, posts, reels, stories, and comments
  • Reddit API -- post search and threaded comments
  • Rate Limits -- per-plan limits and headers
ScavioScavio

Real-time search API for AI agents. Search every platform, not just Google.

Product

  • Features
  • Pricing
  • Dashboard
  • Affiliates

Developers

  • Documentation
  • API Reference
  • Quickstart
  • MCP Integration
  • Python SDK

Alternatives

  • Tavily Alternative
  • SerpAPI Alternative
  • Firecrawl Alternative
  • Exa Alternative

Tools

  • JSON Formatter
  • cURL to Code
  • Token Counter
  • All Tools

© 2026 Scavio. All rights reserved.

Featured on TAAFT
Terms of ServicePrivacy Policy