scrapesearch-mcp
Click on "Deploy 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., "@scrapesearch-mcpsearch for latest AI news"
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.
ScrapeSearch MCP (DuckDuckGo + Mojeek)
MCP server that provides:
search(query)— scrape SERP results (first page only)fetch(url)— fetch and return clean content (markdown/text) or raw HTML
Requirements
Node.js 18+
Related MCP server: webmcp
Install & Build
npm install
npm run buildGlobal install
npm install -g .Then run the server with:
scrapesearch-mcpRun (STDIO)
node dist/index.jsCodex CLI config
~/.codex/config.toml
[mcp_servers.scrapesearch]
command = "scrapesearch-mcp"
args = []
env = { LOG_LEVEL = "info" }Claude Desktop config
claude_desktop_config.json
{
"mcpServers": {
"scrapesearch": {
"command": "scrapesearch-mcp",
"args": [],
"env": { "LOG_LEVEL": "info" }
}
}
}Notes
DuckDuckGo is preferred, with Mojeek fallback if results are empty.
No pagination; only the first page is scraped.
SSRF protections block private/loopback targets.
Scripts
npm run dev— run server in dev mode (TS)npm run build— compile TS →dist/npm test— fixture-based tests (offline)
This server cannot be deployed
Maintenance
Related MCP Connectors
Serper MCP — wraps the Serper Google Search API (serper.dev)
Docs: https://docs.keenable.ai/mcp-server Keenable is a free, remote MCP server that gives agents access to the web index. Search the web with ranked results and date/site filters, then fetch any indexed page as clean markdown. Works out of the box with no account or API key.
Scrape, crawl and search the web for AI agents via MCP.
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server that integrates with the SearXNG API to provide comprehensive web search capabilities with features like time filtering, language selection, and safe search. It also enables users to fetch and convert web content from specific URLs into markdown format.26 npm4MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for web search and content extraction using DuckDuckGo or SearXNG, with Playwright-based fetching and LLM-powered data extraction.139MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for internet search via direct Google and DuckDuckGo HTML scraping with AI-powered result normalization and optional summarization, requiring no API keys for search.MIT
- FlicenseNot gradedqualityDmaintenanceMCP server that enables web search via DuckDuckGo and readable content extraction from HTML pages using FastMCP.-