ScavioScavio
ToolsPricingDocs
Sign InGet Started
  1. Home
  2. Tutorials
  3. How to Replace Claude's Built-in MCP Web Search with Scavio
Tutorial

How to Replace Claude's Built-in MCP Web Search with Scavio

Claude's built-in web_search MCP tool is rate-limited and lacks platform coverage. Swap it for Scavio MCP with Reddit, YouTube, Amazon, and Walmart support.

Get Free API KeyAPI Docs

Claude Code ships with a built-in web_search MCP tool that is conservative by design: Google only, low rate limits, US region. Most agent workflows in 2026 need Reddit, YouTube, and retail. This tutorial disables the built-in and registers Scavio MCP as the replacement with broader coverage.

Prerequisites

  • Claude Code latest
  • A Scavio API key
  • Node.js 20+

Walkthrough

Step 1: Disable the built-in web_search

Edit the Claude Code settings to opt out of the bundled tool.

JSON
// ~/.claude/settings.json
{
  "disabledTools": ["web_search"]
}

Step 2: Install the Scavio MCP

Single npm install covers 10+ platforms.

Bash
npm install -g @scavio/mcp

Step 3: Register the MCP

Add Scavio to your .mcp.json.

JSON
{
  "mcpServers": {
    "scavio": {
      "command": "scavio-mcp",
      "env": { "SCAVIO_API_KEY": "sk_live_..." }
    }
  }
}

Step 4: Verify the swap

In Claude Code, /mcp list should show Scavio tools and no built-in web_search.

Bash
/mcp list

Step 5: Use broader platforms

Claude now has Reddit, YouTube, Amazon, Walmart access via one MCP.

Bash
> Use scavio to find top Reddit threads on MCP tool governance this month.

Python Example

Python
import os, requests

# Scavio has one endpoint per platform - there is no dispatcher endpoint and no
# `platform` request param, so the selector lives in your code.
SCAVIO = "https://api.scavio.dev"
SCAVIO_ENDPOINTS = {
    "google": "/api/v2/google",
    "reddit": "/api/v1/reddit/search",
    "youtube": "/api/v1/youtube/search",
    "amazon": "/api/v1/amazon/search",
    "walmart": "/api/v1/walmart/search",
}
SCAVIO_QUERY_KEY = {"youtube": "search"}
SCAVIO_RESULTS_KEY = {"google": "organic_results", "reddit": "results",
                      "youtube": "results", "amazon": "products", "walmart": "products"}

def scavio_url(platform):
    return SCAVIO + SCAVIO_ENDPOINTS[platform or "google"]

def scavio_body(platform, query):
    return {SCAVIO_QUERY_KEY.get(platform or "google", "query"): query}

def scavio_payload(payload, platform="google"):
    """Google v2 passes Google's response through as-is; every other endpoint
    wraps its payload in `data`. Item fields differ per platform (see
    https://scavio.dev/docs), so only the result list is normalised here."""
    platform = platform or "google"
    out = payload if platform == "google" else payload["data"]
    return {**out, "results": out.get(SCAVIO_RESULTS_KEY[platform], [])}


API_KEY = os.environ['SCAVIO_API_KEY']

def scavio(query, platform="google"):
    r = requests.post(scavio_url(platform),
                      headers={'Authorization': f'Bearer {API_KEY}',
                               'Content-Type': 'application/json'},
                      json=scavio_body(platform, query))
    r.raise_for_status()
    return scavio_payload(r.json(), platform)

print(scavio('mcp tool governance 2026', platform='reddit'))

JavaScript Example

JavaScript

// Scavio has one endpoint per platform - there is no dispatcher endpoint and no
// `platform` request param, so the selector lives in your code.
const SCAVIO = "https://api.scavio.dev";
const SCAVIO_ENDPOINTS = {
  google: "/api/v2/google",
  reddit: "/api/v1/reddit/search",
  youtube: "/api/v1/youtube/search",
  amazon: "/api/v1/amazon/search",
  walmart: "/api/v1/walmart/search",
};
const SCAVIO_QUERY_KEY = { youtube: "search" };
const SCAVIO_RESULTS_KEY = { google: "organic_results", reddit: "results",
  youtube: "results", amazon: "products", walmart: "products" };

const scavioUrl = (platform) => SCAVIO + SCAVIO_ENDPOINTS[platform || "google"];
const scavioBody = (platform, query) =>
  ({ [SCAVIO_QUERY_KEY[platform || "google"] || "query"]: query });

// Google v2 passes Google's response through as-is; every other endpoint wraps
// its payload in `data`. Item fields differ per platform (see
// https://scavio.dev/docs), so only the result list is normalised here.
function scavioPayload(json, platform = "google") {
  const p = platform || "google";
  const out = p === "google" ? json : json.data;
  return { ...out, results: out[SCAVIO_RESULTS_KEY[p]] || [] };
}

const API_KEY = process.env.SCAVIO_API_KEY;
export async function scavio(query, platform) {
  const body = platform ? { query, platform } : { query };
  const r = await fetch(scavioUrl(body.platform), {
    method: 'POST',
    headers: { 'Authorization': `Bearer ${API_KEY}`, 'Content-Type': 'application/json' },
    body: JSON.stringify(scavioBody(body.platform, body.query ?? body.search))
  });
  return scavioPayload(r.json(), body.platform);
}

Expected Output

JSON
Claude Code no longer shows web_search. Scavio MCP exposes search, reddit_search, youtube_search, amazon_search, walmart_search tools. Rate limits follow your Scavio plan, not Anthropic defaults.

Related Tutorials

    Frequently Asked Questions

    Most developers complete this tutorial in 15 to 30 minutes. You will need a Scavio API key (free tier works) and a working Python or JavaScript environment.

    Claude Code latest. A Scavio API key. Node.js 20+. A Scavio API key gives you 50 free credits on signup.

    Yes. The free tier includes 50 credits on signup, which is more than enough to complete this tutorial and prototype a working solution.

    Scavio has a native LangChain package (langchain-scavio), an MCP server, and a plain REST API that works with any HTTP client. This tutorial uses the raw REST API, but you can adapt to your framework of choice.

    Related Resources

    Best Of

    Best Search API for Claude Code in 2026

    Read more
    Workflow

    Claude Code Web Search via Scavio MCP

    Read more
    Use Case

    IDE MCP Search

    Read more
    Best Of

    Best MCP Search Tools for Claude Code in 2026

    Read more
    Use Case

    MCP Custom Search Server

    Read more
    Solution

    qwen-code Search Replacement Stack

    Read more

    Start Building

    Claude's built-in web_search MCP tool is rate-limited and lacks platform coverage. Swap it for Scavio MCP with Reddit, YouTube, Amazon, and Walmart support.

    Get Free API KeyRead the Docs
    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