scrapingdog-mcp
Provides Baidu search results via the Scrapingdog API, with support for Chinese-language restriction and pagination.
Provides DuckDuckGo search results via the Scrapingdog API, with options for region, date filtering, and pagination.
Provides Google search results via the Scrapingdog API, including organic results, ads, knowledge graph, and SERP features, with support for JSON or HTML output.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@scrapingdog-mcpScrape the Hacker News homepage and summarize the top stories."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
scrapingdog-mcp
A Model Context Protocol server that exposes the Scrapingdog scraping APIs as tools for MCP-compatible clients (Claude Desktop, Claude Code, and others).
Communicates over stdio. Built with TypeScript and the official MCP SDK.
What it does
Nine tools, each wrapping one Scrapingdog endpoint:
Tool | Endpoint | What it returns |
|
| Raw HTML of any URL (JS rendering, premium proxies, geotargeting, sessions, stealth, wait) |
|
| Page screenshot metadata (png/jpg/webp, full-page, viewport, quality) |
|
| Google organic results, ads, knowledge graph, SERP features (JSON or HTML) |
|
| Bing search results (market/geo/pagination/safe-search) |
|
| DuckDuckGo results (region, date filter, pagination token) |
|
| Baidu results (Chinese-language restriction, pagination) |
|
| X (Twitter) profile data (name, handle, follower counts, bio) |
|
| X (Twitter) post (tweet) data |
| (forward proxy) | Connection details + ready-to-paste curl/Python for |
Every tool accepts an optional api_key argument to override the configured key for that call.
Related MCP server: crawl4ai-mcp-server
Prerequisites
Node.js ≥ 18.17 (tested on 20.x).
A Scrapingdog API key — get one from your Scrapingdog dashboard after signing up.
Install & build
npm install
npm run build # outputs to dist/Provide your API key
The key is resolved in this order (first wins):
The
api_keyargument on an individual tool call.The
SCRAPINGDOG_API_KEYenvironment variable.A
.envfile containingSCRAPINGDOG_API_KEY=...in the working directory,~/.scrapingdog.env, or~/.env.
Option 2 (env var) is recommended — the key never touches disk beyond your MCP client config, and nothing ends up in tool-call logs.
Configure your MCP client
Claude Desktop / Claude Code (claude_desktop_config.json)
{
"mcpServers": {
"scrapingdog": {
"command": "node",
"args": ["/absolute/path/to/scrcpy/dist/index.js"],
"env": {
"SCRAPINGDOG_API_KEY": "your-key-here"
}
}
}
}Install from npm (no clone needed)
Published as @0pen1/scrapingdog-mcp. Run directly with npx (no install):
npx @0pen1/scrapingdog-mcpThe server reads SCRAPINGDOG_API_KEY from the environment. Pick your CLI below for a one-line setup.
Claude Code
claude mcp add scrapingdog --scope user \
--env SCRAPINGDOG_API_KEY=your-key-here \
-- npx -y @0pen1/scrapingdog-mcp--scope user makes it available in all your projects (use local or project to scope it tighter).
OpenAI Codex CLI
codex mcp add scrapingdog \
--env SCRAPINGDOG_API_KEY=your-key-here \
-- npx -y @0pen1/scrapingdog-mcpThis writes to ~/.codex/config.toml. The equivalent TOML block is:
[mcp_servers.scrapingdog]
command = "npx"
args = ["-y", "@0pen1/scrapingdog-mcp"]
[mcp_servers.scrapingdog.env]
SCRAPINGDOG_API_KEY = "your-key-here"Gemini CLI
gemini mcp add scrapingdog \
--env SCRAPINGDOG_API_KEY=your-key-here \
-- npx -y @0pen1/scrapingdog-mcpCursor / Windsurf / Claude Desktop (JSON config)
For clients that use a JSON config file, add this block. Typical locations:
Claude Desktop —
~/Library/Application Support/Claude/claude_desktop_config.json(macOS)Cursor —
~/.cursor/mcp.json(or.cursor/mcp.jsonper-project)Windsurf —
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"scrapingdog": {
"command": "npx",
"args": ["-y", "@0pen1/scrapingdog-mcp"],
"env": { "SCRAPINGDOG_API_KEY": "your-key-here" }
}
}
}Replace
your-key-herewith your Scrapingdog API key from the dashboard. After editing a JSON config, restart the client so it picks up the server.
Run standalone (for testing)
SCRAPINGDOG_API_KEY=your-key node dist/index.jsIt speaks JSON-RPC over stdio, so you can pipe messages to it directly.
Example tool calls
scrape { "url": "https://example.com", "dynamic": true, "country": "us" }
google_search { "query": "best espresso machines 2026", "results": "10", "country": "us" }
bing_search { "query": "site:github.com mcp server", "count": "20" }
duckduckgo_search { "query": "rust async runtime", "df": "m" }
baidu_search { "query": "人工智能", "ct": 2 }
x_profile { "profileId": "elonmusk" }
x_post { "tweetId": "1655608985058267139" }
screenshot { "url": "https://example.com", "fullPage": true, "format": "png" }
datacenter_proxy { "target_url": "https://httpbin.org/ip" }How responses are handled
JSON endpoints (search, social, etc.): the parsed JSON is returned as text so the host can reason about it directly.
/scrape: raw HTML is returned as text./screenshot: the endpoint returns binary image bytes, which can't be carried as text cleanly. The tool reports the content type and byte length, and notes how to fetch the image directly. (If you need true image delivery, extend the handler to base64-encode into animagecontent block.)Non-2xx responses: returned as MCP error results (
isError: true) with the upstream status, content type, and body. Note Scrapingdog reports invalid keys as HTTP 400 with a JSON "Unauthorized request" message — the body makes this clear.
Credit costs (per request)
Scrape: 1 (rotating proxy) → 25 (JS render + premium). Google/Bing/DDG/Baidu search: ~5. Screenshot: 5. Profile/Post scrapers: 5–10. See the pricing/credit table for the full breakdown. Requests time out after 60s upstream.
Project layout
src/
index.ts # entry point — creates McpServer, connects stdio transport
scrapingdog.ts # API key resolution + shared HTTP request helper
result.ts # response → MCP tool-result formatting (ok / error / fromResponse)
tools.ts # the 9 tool definitions (schema + handler) and registrationLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceDescription: An MCP server with 15 tools covering web search, scraping, extraction, crawling, and autonomous data gathering via the SearchClaw API. Tagline: "The complete web data pipeline for AI agents — Search, Extract, Crawl in One API."Last updated1551MIT
- Alicense-qualityDmaintenanceA lightweight MCP server that exposes Crawl4AI web scraping and crawling capabilities as tools for AI agents, enabling single-page scraping and multi-page crawling with adaptive stopping.Last updated101MIT
- Alicense-qualityCmaintenanceMCP server for the Spider web crawling and scraping API, enabling AI agents to crawl, scrape, search, and extract web data.Last updated942MIT
- Flicense-qualityDmaintenanceA Model Context Protocol (MCP) server for ScrapingDog API that provides comprehensive web scraping, search engine data extraction, social media scraping, and e-commerce data collection capabilities.Last updated
Related MCP Connectors
Scrapingdog MCP — wraps Scrapingdog (scrapingdog.com), a proxy-based web
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/0pen1/scrapingdog-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server