Web Search MCP Server
This server provides advanced web search, URL fetching, and deep research capabilities for MCP clients. Key tools:
web_search: Search across 6 engines (DuckDuckGo, Bing, BingCN, Baidu, Sogou, 360) with automatic language-based engine selection or manual override (including
engine='all'). Returns up to 30 results per engine (default 8), cached with frequency‑aware TTLs (e.g., 30 min for search pages).fetch_url: Fetch any URL and return clean markdown (default up to 16,000 chars, max 50,000), with boilerplate removed. Automatically routes CN domains directly and international domains through a proxy. Falls back to TLS/JA3 fingerprint impersonation (via curl_cffi) when sites return 403 (e.g., Cloudflare-protected pages).
deep_research: Conduct thorough multi‑engine research. Fans out queries across engines, deduplicates results using exact URL matching and SimHash near‑duplicate detection, ranks merged results with Reciprocal Rank Fusion (RRF), fetches the top‑K pages (default 4, max 10), and synthesizes a cited markdown report. Configurable per‑engine result count (up to 20) and fetch character limit (up to 20,000).
Additional features include per‑host token bucket rate limiting with exponential backoff to defeat anti‑bot measures, and proxy/cache settings configurable via environment variables.
Allows performing web searches using Baidu, optimized for Chinese-language queries.
Allows performing web searches using DuckDuckGo, returning relevant results and links.
Allows performing web searches using Sogou, with support for Chinese-language queries.
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., "@Web Search MCP Serverdeep research on the impact of AI on software development"
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.
web-search MCP server
A self-hosted web search MCP server for Claude Code / any MCP client. Multi-engine (CN-direct + international-via-proxy auto-routing), three tools, and research-backed optimizations: RRF rank fusion, SimHash near-duplicate dedup, per-host rate limiting, frequency-aware caching, and TLS/JA3 fingerprint impersonation fallback.
Installation
Prerequisites
Node.js ≥ 18
Python 3 +
curl_cffi(optional, for TLS impersonation on protected sites):pip install curl_cffiA proxy on
127.0.0.1:7890(e.g) — setPROXY_URL=""to disable.
Build
git clone git@github.com:nuoyax/web-search-mcp.git
cd web-search-mcp
npm installWire into Claude Code
User-level (available in all projects):
claude mcp add web-search -s user -e PROXY_URL=http://127.0.0.1:7890 \
-- node /absolute/path/to/web-search-mcp/index.jsOr add to .mcp.json (project-level):
{
"mcpServers": {
"web-search": {
"command": "node",
"args": ["/absolute/path/to/web-search-mcp/index.js"],
"env": { "PROXY_URL": "http://127.0.0.1:7890" }
}
}
}Verify
node index.js # start the MCP server (stdio)
node test-smoke.js # smoke test every engine + fetch(Recommended) Disable Claude Code's built-in WebFetch
Claude Code ships a built-in WebFetch tool that fetches via claude.ai's server-side domain-safety check. On a restricted network it errors with Unable to verify if domain … is safe to fetch … blocking claude.ai, and it can't use your proxy. Since this server's fetch_url already fetches through 127.0.0.1:7890 (and TLS-impersonates on 403), disable the built-in one so Claude always uses fetch_url.
Add WebFetch to permissions.deny in ~/.claude/settings.json (global, all projects):
{
"permissions": {
"deny": ["WebFetch"]
// also common: "WebSearch" if you want web_search to fully replace it
}
}Or, project-only — D:\agents\web_search\.claude\settings.local.json (gitignored):
{ "permissions": { "deny": ["WebFetch"] } }deny rules stack across the user → project → local layers and are honored even in bypassPermissions mode. Restart Claude Code after editing. Verify with /permissions.
Related MCP server: serp-it
Highlights
6 engines — DuckDuckGo / Bing (international, via proxy) + Bing CN / Baidu / Sogou / 360 (direct). Auto-selected by query language.
3 tools —
web_search,fetch_url,deep_research(multi-engine fan-out → dedup → rank → fetch → cited report)Auto proxy routing — CN hosts go direct, international hosts go through
127.0.0.1:7890; re-decided per redirect hop.RRF rank fusion (
k=60) across engines — robust without score normalization.SimHash dedup — 64-bit, Hamming ≤ 3, merges syndicated copies across hosts.
Per-host token bucket + exponential backoff — defeats frequency-based anti-bot detection.
Disk cache with frequency-aware TTL (search 30 min / news 1 h / docs 7 d).
TLS/JA3 impersonation via
curl_cffifor Cloudflare-protected sites (e.g.docs.anthropic.com).
Architecture
flowchart TB
Client["Claude Code / MCP Client\n(stdio · JSON-RPC)"]
subgraph Server["web-search MCP Server (index.js)"]
T1["web_search"]
T2["fetch_url"]
T3["deep_research"]
Cache["cache.js\n disk KV · frequency-aware TTL"]
end
subgraph Core["Core layer"]
Eng["engines.js\n6 engine adapters"]
Fetch["fetcher.js\nHTML → markdown\n+ TLS fallback dispatch"]
Res["research.js\nRRF fusion + SimHash dedup"]
end
subgraph HTTP["http.js (undici primary path)"]
Proxy["Proxy routing\nCN direct / Intl → 7890\nre-routed per hop"]
Bucket["Token bucket\n1 concurrent / host\n+120ms interval"]
Backoff["Exponential backoff\n429 / 5xx retry\n+ Retry-After"]
Undici["decompress interceptor\n+ manual 3xx loop"]
Sim["simhash.js\n64-bit Charikar near-dup"]
end
TLS["tlsbypass.js → curl_cffi (Python)\nbrowser JA3/JA4 impersonation"]
CN["CN engines (direct)\nbaidu · bingcn · sogou · so"]
Intl["International engines (proxy 127.0.0.1:7890)\nduckduckgo · bing"]
Client <--> Server
T1 --> Core
T2 --> Core
T3 --> Core
T1 -.cache.-> Cache
T2 -.cache.-> Cache
T3 -.cache.-> Cache
Core --> HTTP
HTTP -- "403 / 429\nor hard-case host" --> TLS
HTTP --> CN
HTTP --> Intldeep_research pipeline
flowchart TB
Q(["query"]) --> S1["1. Engine selection\nCJK → CN first · Latin → Intl first\nor engines=[...] / all"]
S1 --> S2["2. Fan-out search\nall engines in parallel · fault-tolerant"]
S2 --> S3["3. Baidu redirect resolution\nbaidu.com/link?url= → real URL"]
S3 --> S4["4. Two-stage dedup\nstage 1: exact URL · stage 2: SimHash Hamming ≤ 3"]
S4 --> S5["5. RRF ranking\nscore = Σ 1/(60 + rank)"]
S5 --> S6["6. Fetch top-K\nmax 4 concurrent · token bucket + backoff\nTLS → curl_cffi on 403"]
S6 --> S7["7. Synthesize report\ncited markdown"]
S7 --> R(["cited report"])Principles
1. Auto proxy routing (CN direct / international via proxy)
src/http.js keeps a list of CN-domain suffixes (baidu.com / bing.com / so.com …). On each request the host suffix decides:
CN domain hit → direct (proxying CN sites is slower and trips their risk control)
International host → through
127.0.0.1:7890(works around host-network issues reaching foreign sites)On redirect, the route is re-decided per hop: a 301 from an international site to a CN CDN stops using the proxy
engine.search()may override withforceProxy/forceDirect(e.g. DuckDuckGo must be proxied)Set
PROXY_URL=""to disable the proxy (e.g. when a global VPN is active)
2. RRF rank fusion (Reciprocal Rank Fusion)
src/research.js. Each result's score = Σ_engine 1/(k + rankᵢ), with k=60.
Unsupervised: no score normalization needed; robust to engines returning different counts
Cross-engine consensus: results that appear in multiple engines near the top naturally surface
Query-term-in-title is only a 1e-4-scale tiebreaker; it never overrides cross-engine consensus
k=60is the standard default from Cormack et al. (2009) and ranx.fuse
3. SimHash near-duplicate dedup
src/simhash.js. 64-bit SimHash (Charikar), tokenized with FNV-1a hashing + unigram/bigram.
Two stages: exact normalized-URL merge first, then SimHash Hamming ≤ 3 as near-duplicate
The fingerprint excludes the host, so syndicated copies across different hosts merge (the same article republished by different portals, or the same result wrapped differently by Baidu vs Bing)
Verified: identical text under different hosts → distance 0; reworded → 11; unrelated → 36 — discriminative
4. Per-host token bucket + exponential backoff (anti frequent-access detection)
src/http.js. Per host:
Concurrency 1 + ≥120 ms between requests (
HOST_BUCKETS)Transient errors (429/502/503/504) + network failures: exponential backoff
500·2^attempt + jitter, up to 2 retriesHonors the
Retry-Afterresponse headerDifferent hosts still run in parallel (no throughput loss)
This directly targets the main cause of "frequent-access detection" — high request rate to a single host.
5. Result caching + frequency-aware TTL (incremental)
src/cache.js. Disk JSON KV with TTLs scaled by site update frequency:
Site category | TTL | Rationale |
Search-engine result pages (baidu/bing/ddg…) | 30 min | result ordering shifts fast |
News aggregators (163/sina/cctv/reuters…) | 1 h | high-churn |
Docs/API/encyclopedia (docs./wikipedia/arxiv…) | 7 d | stable content |
Other | 6 h | default |
web_search/fetch_url/deep_researchreturn cached results on hit (tagged_cached (age Nmin, ttl Mmin)_)Only caches when there are results (empty results aren't cached, so the next call retries)
CACHE_DISABLED=1disables;CACHE_DIRoverrides the cache directoryRationale: frequency-aware incremental crawling (2010) — refresh interval scaled by page change frequency
6. TLS/JA3 fingerprint impersonation fallback (curl_cffi)
src/tlsbypass.js + src/fetcher.js. Node undici's TLS ClientHello differs from a real browser, so heavily-protected sites (Cloudflare-protected docs.anthropic.com etc.) return 403. curl_cffi (Python) can impersonate a real browser's JA3/JA4 fingerprint + HTTP/2 settings.
Strategy:
Fast path: undici by default (fast, native)
Known hard-case hosts (
docs/platform.anthropic.cometc.): go straight to curl_cffiGeneric fallback: on undici 403/429 or network error → auto-fallback to curl_cffi; if both fail, report honestly (with
impersonatedflag)Reports tag
TLS: impersonated (curl_cffi)ornative (undici)Requires Python +
pip install curl_cffi; without it, degrades to undici-only (main flow unaffected)Rationale: TLS Beyond the Browser (ACM IMC 2019) — non-browser TLS clients are fingerprintable; impersonation closes that gap
7. Engine adapters
Engine | Region | Route | Notes |
duckduckgo | international | proxy |
|
bing | international | proxy |
|
bingcn | CN | direct |
|
baidu | CN | direct | Detects CAPTCHA interstitial and errors out; reads |
sogou | CN | direct | Mobile + desktop dual fallback to dodge anti-bot |
so (360) | CN | direct |
|
A query with CJK characters defaults to CN engines first; pure-Latin queries go international first. engine='all' fans out to every engine.
8. Key undici v7 handling
interceptors.decompress(): auto-decompress gzip/br/deflate (Bing international returns brotli)Manual 3xx redirect loop: undici v7's
request()no longer acceptsmaxRedirections, and theredirectinterceptor alone isn't enough (per-request opts default to 0 and short-circuit). The manual loop also lets us re-route proxy/direct per hop.
Tools
web_search
{ "query": "anthropic claude api pricing", "num": 8, "engine": "auto" }engine:auto(default) |all|duckduckgo|bing|bingcn|baidu|sogou|so
fetch_url
{ "url": "https://example.com/page", "max_chars": 16000 }Fetch a URL, strip boilerplate, return markdown. Auto-routes proxy/direct by domain; falls back to TLS impersonation on 403.
deep_research
{
"query": "中国空间站 最新进展",
"engines": ["bingcn", "baidu"],
"num_per_engine": 8,
"fetch_top_k": 4,
"fetch_chars": 6000
}Multi-engine fan-out → dedup & RRF rank → fetch top-K → cited markdown report.
Environment variables
Variable | Default | Effect |
|
| proxy endpoint; empty string disables proxying |
|
| set |
|
| cache directory |
Referenced papers
Papers referenced in the implementation (DOIs verifiable; retrieved via the OpenAlex academic API + DuckDuckGo/Bing):
Result fusion / ranking
Paper | Year | Used for | DOI |
ranx.fuse: A Python Library for Metasearch | 2022 (CIKM) | RRF implementation reference; 25 fusion algorithms | |
Comparing Rank and Score Combination Methods for Data Fusion in IR | 2005 | Comparison of CombMNZ etc.; basis for RRF k | |
The use of MMR, diversity-based reranking | 1998 (Carbonell) | Foundational diversity reranking (not yet implemented) | |
Fusion-based methods for result diversification in web search | 2018 (Information Fusion) | Combining fusion and diversity |
Near-duplicate detection
Paper | Year | Used for | DOI |
A Review for Weighted MinHash Algorithms | 2018 | MinHash/SimHash survey | |
Improved Near-Duplicate Detection for Aggregated and Paywalled News | 2025 (NAACL) | Recent advances in near-dup detection | |
Effective and Fast Near Duplicate Detection via Signature-Based | 2016 | Signature-based dedup engineering |
Parallel / incremental crawling / rate limiting
Paper | Year | Used for | DOI |
BUbiNG: Massive Crawling for the Masses | 2016 | Per-host politeness queue, linear scaling | |
SIMHAR — Smart Distributed Web Crawler for the Hidden Web | 2020 (IEEE Access) | Distributed queue + SIM+Hash dedup | |
Design of a Priority Based Frequency Regulated Incremental Crawler | 2010 | Frequency-aware incremental crawling (caching) | |
On the Feasibility of Geographically Distributed Web Crawling | 2008 | Geo-distributed crawling reduces latency |
Anti-bot / blocking evasion
Paper | Year | Used for | DOI |
TLS Beyond the Browser | 2019 (ACM IMC) | TLS/JA3 fingerprint exposure (P1) | |
FP-Crawlers: Studying the Resilience of Browser Fingerprinting | 2020 | Browser fingerprinting detection | |
A First Look at User-Installed Residential Proxies | 2024 (CNSM) | Residential-proxy ecosystem (proxy pool, planned) |
Full optimization plan and gap analysis:
docs/optimization-research.md.
Project structure
web-search-mcp/
├── index.js # MCP server entry (registers 3 tools, stdio)
├── src/
│ ├── http.js # HTTP layer + proxy routing + token bucket + backoff
│ ├── engines.js # 6 engine adapters
│ ├── fetcher.js # HTML → markdown + TLS fallback dispatch
│ ├── research.js # RRF fusion + SimHash dedup pipeline
│ ├── simhash.js # 64-bit Charikar SimHash
│ ├── cache.js # disk KV with frequency-aware TTL
│ └── tlsbypass.js # curl_cffi TLS impersonation bridge
├── test-smoke.js # smoke test
├── docs/
│ ├── optimization-research.md
│ ├── architecture.svg
│ └── pipeline.svg
├── .mcp.json # project-level MCP registration
└── package.jsonKnown limitations
All network requests time out in 20–25 s; nothing hangs.
Baidu occasionally returns a CAPTCHA interstitial; that engine then errors and
deep_researchfalls back to the other engines.Bing international wraps result links in
bing.com/ck/a; the real URL is reconstructed from the result's<cite>.DuckDuckGo uses the no-key
html.duckduckgo.com/html/endpoint, which requires the proxy.TLS impersonation depends on Python +
curl_cffi. Without it, falls back to undici-only and hard-case sites (e.g.docs.anthropic.com) return 403; with it, impersonation is automatic.The cache expires by TTL without background refresh; the next call after expiry re-fetches. Set
CACHE_DISABLED=1to disable.
License
MIT
Available Tools
3 toolsdeep_researchA
Multi-engine deep research: fan out across engines (auto-selects CN vs international), dedupe + rank results, fetch the top pages, and synthesize a cited markdown report. Use for thorough, multi-source research.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Research question / query | |
| engines | No | Engines to use; omit for auto-selection based on query language | |
| fetch_chars | No | ||
| fetch_top_k | No | ||
| num_per_engine | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description discloses key behavioral traits: engine auto-selection (CN vs international), deduplication and ranking, fetching top pages, and producing a cited markdown report. This gives good insight into the internal pipeline, though lacks details on failure modes or operational limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core action, and every word adds value. No wasted information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex tool with five parameters and no output schema, the description adequately explains the workflow and final output (cited markdown report). It omits some operational details but is sufficiently complete for an agent to select and invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 40%, and the description helps clarify 'engines' (auto-selection) and 'fetch_top_k' (fetch top pages), but fetch_chars and num_per_engine remain unexplained. The description adds some meaning but does not fully compensate for the low schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it performs multi-engine deep research by fanning out across engines, deduplicating and ranking results, fetching top pages, and synthesizing a cited markdown report. This specific verb+resource description effectively distinguishes it from sibling tools web_search and fetch_url.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description ends with 'Use for thorough, multi-source research,' providing clear context for when to select this tool over simpler siblings. However, it does not explicitly state when not to use it or name alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_urlA
Fetch a URL, strip boilerplate, and return the page content as markdown. International hosts auto-route through the configured proxy; CN hosts (baidu/bing.cn/so/...) go direct.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL to fetch | |
| max_chars | No | Max chars of markdown to return |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It explicitly discloses behavioral traits: 'strip boilerplate', returns markdown, and the proxy routing for international vs. CN hosts. This goes beyond minimal operational details, though it doesn't address error handling or auth requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the primary action, followed by a relevant network routing detail. Every sentence adds necessary context with no redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with two parameters and no output schema, the description sufficiently covers the return value ('markdown') and key behavior (boilerplate stripping, proxy routing). It lacks mention of error handling or non-HTML content, but these are not critical given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so a baseline of 3 applies. The description adds little beyond the schema; 'Fetch a URL' paraphrases the url parameter, and max_chars is already described as 'Max chars of markdown to return.' No additional parameter semantics are provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('Fetch'), a specific resource ('a URL'), and the output format ('return the page content as markdown'). This clearly distinguishes it from sibling tools 'web_search' and 'deep_research', which are for searching/researching rather than fetching a known URL.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when the agent has a specific URL to retrieve, but it does not explicitly contrast with alternatives like web_search or deep_research. It lacks an explicit 'when to use' or 'when not to use' statement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
web_searchA
Search the web across engines. Auto-selects CN or international engines based on the query language; international engines route through the configured proxy. Use engine='all' to fan out across every engine, or specify one (duckduckgo|bing|bingcn|baidu|sogou|so).
| Name | Required | Description | Default |
|---|---|---|---|
| num | No | Max results (per engine) | |
| query | Yes | Search query | |
| engine | No | Engine: auto | all | duckduckgo | bing | bingcn | baidu | sogou | so | auto |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses meaningful behaviors: auto-selection of CN/international engines, proxy routing for international engines, and fan-out semantics for 'all'. These go beyond the basic schema, though it does not mention output format or rate limits, so it is not exhaustive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, front-loaded with the core purpose, and every sentence provides distinct value: purpose, proxy/auto-select behavior, and usage examples. No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description provides sufficient invocation context for a moderately complex tool (3 params, no output schema). It explains engine choices and the proxy routing. However, since there is no output schema, a note about the result format would improve completeness, but the description is still adequate for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds significant meaning to the 'engine' parameter by explaining the 'auto' behavior, the 'all' fan-out, and listing valid values. It does not add detail for 'query' or 'num', but the engine semantics are substantially enriched.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb+resource: 'Search the web across engines.' It clearly distinguishes itself from siblings like fetch_url (fetching a specific URL) and deep_research (presumably deeper analysis). The mention of engine auto-selection further narrows its unique role.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear guidance on engine selection: use engine='all' to fan out or specify one of the listed engines. It also explains the auto-selection behavior based on query language. However, it does not explicitly contrast this tool with alternatives like deep_research or fetch_url, so a fully explicit when-to-use is absent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
v1.0.0- First observed
deep_research - First observed
fetch_url - First observed
web_search
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: web_search for searching, fetch_url for fetching a specific page, and deep_research for multi-step synthesis. While deep_research uses search, it is clearly a higher-level workflow, so no ambiguity.
web_search and fetch_url follow a consistent verb_noun pattern, but deep_research uses an adjective_noun pattern. All names use lowercase and underscores, so the deviation is minor and does not hinder readability.
Three tools is well-scoped for a web search server: search, fetch, and deep research cover the core needs without redundancy or bloat.
The surface covers the essential operations of searching, fetching, and synthesizing. Minor gaps exist (e.g., no tool for image search or specific engine metadata), but they are not critical for typical use.
Maintenance
Related MCP Connectors
Multi-engine search for AI agents. Trust scoring, local corpus, MCP-native. Self-hostable, BYOK.
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
- 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
- AlicenseNot gradedqualityCmaintenanceAn MCP server that aggregates web search results from multiple engines and optionally renders pages to Markdown, providing a unified search interface.10 npm3ISC
- AlicenseAqualityAmaintenanceA self-hosted MCP server providing web search and URL fetching tools, running locally without external API keys or accounts.281 npmMIT
- AlicenseAqualityBmaintenanceA production-ready MCP server for free web search, news search, and webpage content extraction using DuckDuckGo and Bing.48 npmMIT