ScavioScavio
ToolsPricing
Sign InsGet Startedg
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 100 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 100 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 100 tools:

Google Search

ToolDescription
search_googleWeb search (v2) with organic results, ads, and AI Overview
google_ai_modeAI Mode conversational answer with cited sources
google_maps_searchSearch Google Maps for local businesses
google_maps_placePlace details: address, phone, hours, rating
google_maps_reviewsReviews for a place with pagination
google_shoppingProduct listings with price, store, and rating
google_shopping_productProduct detail and sellers
google_shopping_storesMore sellers for a product (pagination)
google_flightsFlight itineraries with prices and stops
google_hotelsHotel search with prices and ratings
google_hotels_detailHotel property details
google_newsNews results by query, topic, story, or publication
google_trendsInterest-over-time and related queries
google_trendingTrending searches

YouTube

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

Amazon

ToolDescription
search_amazonSearch product listings across 22 marketplaces. Results are unordered: the marketplace ignores every sort value, so there is no sort, category, merchant or price filter
get_amazon_productGet full product details by ASIN
get_amazon_offersList every seller offer on an ASIN, including who holds the buy box

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

X (Twitter)

ToolDescription
search_xSearch X posts by keyword, with cursor pagination
get_tweetFull detail for a single post
get_tweet_commentsReplies to a post
get_tweet_retweetersAccounts that reposted a post
get_x_userProfile: bio, follower and following counts, verified status
get_x_user_tweetsA user's posts timeline
get_x_user_repliesA user's replies timeline
get_x_user_mediaA user's photo and video posts
get_x_user_followersWho follows this account
get_x_user_followingsWho this account follows
get_x_trendingCurrent trending topics

LinkedIn

ToolDescription
get_linkedin_personPerson profile: headline, location, experience (1 credit)
get_linkedin_person_aboutA person's about section (1 credit)
get_linkedin_person_postsA person's posts (10 credits)
get_linkedin_companyCompany profile, including a sample of featured employees (1 credit)
get_linkedin_company_postsA company's posts (10 credits)
search_linkedin_jobsSearch job listings by keyword and location (10 credits)
get_linkedin_jobFull detail for one job listing (30 credits)
get_linkedin_postA single post (1 credit)
get_linkedin_post_commentsComments on a post (10 credits)

TikTok Shop

ToolDescription
search_tiktok_shopSearch the product catalog, with exact prices
get_tiktok_shop_search_suggestionsKeyword autocomplete and expansion
get_tiktok_shop_productFull product detail (no price -- take price from a listing call)
get_tiktok_shop_product_reviewsPaginated reviews with a star histogram
get_tiktok_shop_categoriesThe global category tree
get_tiktok_shop_category_productsProducts in a category, with exact prices
get_tiktok_shop_shop_productsA seller's catalog, with exact prices
resolve_tiktok_shop_urlResolve any TikTok Shop link to a product or shop id

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: 100 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

One scraper API for every social, search and ecommerce platform. Built for AI agents.

Product

  • Features
  • Pricing
  • Dashboard
  • Affiliates

Developers

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

Alternatives

  • Tavily Alternative
  • SerpAPI Alternative
  • Firecrawl Alternative
  • Exa Alternative
  • Serper Alternative
  • Tavily vs Scavio
  • SerpAPI vs Scavio
  • All alternatives
  • Compare Scavio vs alternatives

Search APIs

  • Google Search API
  • Amazon Product API
  • YouTube API
  • Reddit API
  • Walmart Product API
  • TikTok API
  • Instagram API

Tools

  • All Tools

© 2026 Scavio. All rights reserved.

Featured on TAAFT
Terms of ServicePrivacy Policy