Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ”Ž Search & Data Extraction
  3. Scrapingdog
S
Health: ActiveRecent health check succeeded.Last checked 8/10/2026, 11:56:13 PM

Scrapingdog

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Scrapingdog web-scraping & SERP APIs: web scrape, Google, Amazon, LinkedIn, YouTube, and more.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "scrapingdog": {
      "command": "npx",
      "args": [
        "-y",
        "https://modelcontextprotocol.io"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Tool Schemas (34) Directory Badge Claim listing AlternativesπŸ”Ž More in Search & Data Extraction

Capabilities & Tool Schemas (34) ~187 tokensApproximate context cost of this server’s tool schemas (~4 chars/token), before any tool is called. Actual usage depends on your client and model.Self-reported Self-reportedParsed from the repository README, not verified against a live server β€” may be incomplete or out of date.

Inspect callable tools, capabilities, and parameters exposed to AI agents by Scrapingdog.

web_scrape

url

google_search

query

google_maps

query

google_news

β€” (`query` or a `*_token`)

google_trends

query

google_shopping

query

Documentation Overview

Scrapingdog MCP Server

A Model Context Protocol server that exposes the Scrapingdog web-scraping and SERP APIs as tools any MCP-compatible client (Claude Desktop, Claude Code, Cursor, etc.) can call.

One tool per Scrapingdog product β€” general web scraping, the full Google family, Amazon, Walmart, eBay, LinkedIn, X, YouTube, Bing, Baidu, and screenshots.

Requirements

  • Node.js β‰₯ 18
  • A Scrapingdog API key β€” get one on your dashboard.

Install & build

Terminal
npm install
npm run build

Configuration

The server reads your API key from the SCRAPINGDOG_API_KEY environment variable. It is never passed as a tool argument, so it stays out of the model's context, transcripts, and logs.

VariableRequiredDefaultDescription
SCRAPINGDOG_API_KEYyesβ€”Your Scrapingdog API key.
SCRAPINGDOG_API_BASEnohttps://api.scrapingdog.comOverride the API base URL.
SCRAPINGDOG_TIMEOUT_MSno90000Per-request timeout in milliseconds.

Claude Desktop

Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):

config.json
{
  "mcpServers": {
    "scrapingdog": {
      "command": "node",
      "args": ["/absolute/path/to/ScrapingdogMCP/dist/index.js"],
      "env": {
        "SCRAPINGDOG_API_KEY": "your_api_key_here"
      }
    }
  }
}

Claude Code

Terminal
claude mcp add scrapingdog -e SCRAPINGDOG_API_KEY=your_api_key_here -- node /absolute/path/to/ScrapingdogMCP/dist/index.js

Available tools

35 tools. Each tool's full parameter set (with descriptions and API defaults) is generated from src/endpoints.ts and surfaced to the client as the tool's input schema. All paths were validated against the live API except amazon_reviews (⚠️) β€” see Known issues.

General

ToolScrapingdog endpointKey required args
web_scrape/scrapeurl

Google family

ToolScrapingdog endpointKey required args
google_search/googlequery
google_maps/google_mapsquery
google_news/google_news/v2β€” (query or a *_token)
google_trends/google_trendsquery
google_shopping/google_shoppingquery
google_scholar/google_scholarquery (or cites)
google_jobs/google_jobsquery
google_finance/google_financequery
google_lens/google_lensurl
google_ai_mode/google/ai_modequery
google_ai_overview/google/ai_overviewurl
google_shorts/google_shortsquery
google_hotels/google_hotelsquery, check_in_date, check_out_date
google_patents/google_patentsquery
google_immersive_product/google_immersive_productpage_token
google_images/google_imagesquery

E-commerce

ToolScrapingdog endpointKey required args
amazon_search/amazon/searchquery, domain, page, country
amazon_product/amazon/productasin
amazon_reviews ⚠️/amazon/reviewsasin
amazon_offers/amazon/offersasin
walmart_search/walmart/searchurl
ebay_search/ebay/searchurl

Social / professional

ToolScrapingdog endpointKey required args
linkedin_profile/linkedintype, linkId
x_profile/x/profileprofileId
youtube_search/youtubesearch_query
youtube_transcripts/youtube/transcriptsv
youtube_video/youtube/videov
youtube_channel/youtube/channelchannel_id
youtube_comments/youtube/commentsv

Other search engines

ToolScrapingdog endpointKey required args
bing_search/bing/searchquery
baidu_search/baidu/searchquery
universal_search/searchquery

AI / LLM & tools

ToolScrapingdog endpointKey required args
chatgpt/chatgptprompt
screenshot/screenshoturl (returns an image)

Known issues

All 35 endpoints were validated against the live API and return data, with one exception:

  • amazon_reviews β€” the /amazon/reviews route is correct, but the live endpoint currently responds HTTP 400 "Something went wrong" for every input (any ASIN, with or without extra params). This looks like a Scrapingdog backend/plan-scope issue rather than a wrapper bug. It stays marked with verify: true in src/endpoints.ts until it returns data. List flagged endpoints anytime with:
Terminal
npm run list:unverified

Adding or adjusting an endpoint

Every endpoint is a single declarative object in src/endpoints.ts β€” no handler code to write. To add a Scrapingdog product (e.g. Google Hotels, Patents, TikTok), append:

JSON Config
{
  tool: "google_hotels",
  title: "Google Hotels API",
  path: "/google_hotels",
  description: "…",
  params: [
    { name: "query", type: "string", required: true, description: "…" },
    // …
  ],
}

Rebuild with npm run build.

Architecture

Code
src/
  types.ts       Endpoint / EndpointParam type definitions
  endpoints.ts   Declarative registry of every Scrapingdog API
  client.ts      HTTP client: URL building, API-key resolution, error handling
  server.ts      Compiles each endpoint into an MCP tool + Zod input schema
  index.ts       stdio entry point

License

MIT

Related MCP Servers

View all in Search & Data Extraction View all alternatives
  • Crawlora Mcp logoCrawlora Mcp

    Hosted MCP for structured public web data β€” 319 tools across search, maps, commerce, social, and finance, each returning clean JSON. Free 2,000 credits/mo.

    πŸ”Ž Search & Data Extraction3 views
    Compare vs Crawlora Mcp β†’
  • Hasdata Mcp logoHasdata Mcp

    Remote MCP server providing structured data APIs for Google (Search, Maps, Trends, Flights), Amazon, Airbnb, Zillow, Yelp, and more. 40+ tools returns clean JSON data instead of browser automation or raw HTML scraping. Designed for AI agents requiring reliable hosted data access.

    πŸ”Ž Search & Data Extraction1 views
    Compare vs Hasdata Mcp β†’
  • Wigolo logoWigolo

    Local-first, keyless web intelligence in one server: search, fetch, crawl, extract, cache, find-similar, and research. Multi-engine search with local ML reranking and a persistent SQLite cache, renders JS-heavy pages, and keeps everything on your machine. Install via npx wigolo init --non-interactive --agents=.

    πŸ”Ž Search & Data Extraction2 views
    Compare vs Wigolo β†’
  • Crawleo MCP logoCrawleo MCP

    Crawleo MCP Server - Real-Time Web Knowledge for AI Crawleo's Model Context Protocol (MCP) server enables AI assistants like Claude to access real-time web data directly through native tool integration.

    πŸ”Ž Search & Data Extraction2 views
    Compare vs Crawleo MCP β†’

Frequently Asked Questions about Scrapingdog

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "scrapingdog": { "command": "npx", "args": ["-y", "Scrapingdog"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewScrapingdog AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/scrapingdog?style=directory)](https://allmcps.com/mcp/scrapingdog)
HTML Embed
<a href="https://allmcps.com/mcp/scrapingdog"><img src="https://allmcps.com/api/badge/scrapingdog?style=directory" alt="Scrapingdog on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ”ŽSearch & Data Extraction
More technical detailsExpand β–Ύ
TransportSSE (Remote)
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
Last commit10d ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Jul 31, 2026
52Quality signal: Good Β· 52/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools25/30
Adoption & activity4/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ”Ž Search & Data Extraction β†’Best MCP servers for Web Search & Scraping β†’Alternatives to Scrapingdog β†’Install in Claude DesktopInstall in CursorInstall in VS Code