Agent Search MCP
A free, multi-source web search MCP server enabling AI agents to search the internet with no API key required, offering advanced filtering, content extraction, and token-optimized results.
Tools:
free_search— Basic web search via DuckDuckGo, Sogou, Brave, or Tavily. Results are automatically deduplicated, scored, and ranked (1–50 results).free_search_advanced— Filtered search with controls for recency (day/week/month/year), language (auto/en/zh), minimum confidence score (1–3), domain inclusion/exclusion, and result count (1–20).free_extract— Extract the full content of a URL as clean Markdown, with configurable max length (default: 5000 chars).
Key Features:
No API key required for basic functionality (DuckDuckGo + Sogou work out of the box)
Multi-engine fallback chain: Free engines first; paid engines (Brave/Tavily) auto-enabled when API keys are set
Confidence scoring: Each result scored 1–3 based on how many sources returned it
Token optimization: Titles capped at 100 chars, snippets at 200 chars; deduplication reduces token usage ~40–50%
Chinese web search via Sogou integration
Built-in security: Prompt injection detection, phishing URL filtering, output boundary markers
Real-time provider health tracking with automatic filtering of unhealthy providers
Self-hostable: Data stays on your own infrastructure
CLI support: Run searches, extract pages, or start an HTTP server from the terminal
Compatible with Claude Code, Cursor, Windsurf, Codex, and other MCP clients
Provides global web search as a paid fallback engine, with rate limits (2000 free queries/month).
Provides free global web search without an API key, used as a core engine for multi-source verification.
Provides free Chinese web search without an API key, enabling native Chinese language results.
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., "@Agent Search 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.
Agent Search MCP: Free-first Web Search with Inspectable Evidence
A Node.js MCP server and CLI for English and Chinese web search.
Agent Search MCP starts without an API key. It returns compact multi-source evidence, records provider failures, and bounds work with request and evidence budgets. Paid providers run only when policy and credentials allow.
中文文档 · Product page · Benchmarks · Architecture · CHANGELOG
Install
npx -y agent-search-mcpRequires Node.js >= 18.17. The default runtime does not require a browser, database, Python, or a search API account.
Connect an MCP client
Use this stdio configuration in MCP clients that accept mcpServers JSON,
including Claude Desktop, Cursor, VS Code, and Windsurf:
{
"mcpServers": {
"agent-search": {
"command": "npx",
"args": ["-y", "agent-search-mcp"]
}
}
}Claude Code and Codex can register the same npx -y agent-search-mcp stdio
command through their MCP settings.
Add the optional Agent Skill
After connecting the MCP server, Agent Skills-compatible clients can install the repository-owned routing guide:
npx skills add lennney/agent-search-mcp --skill agent-searchInvoke it with a request such as Use $agent-search to verify this claim with official sources. The Agent Search Skill
chooses one of four bounded paths: quick discovery, stricter verification,
Chinese-source search, or extraction of a selected URL. It checks that the
needed MCP tool exists and asks before any install or configuration change.
Installing the Skill does not start or configure the MCP server.
Example: inspect a bounded search result
After building the local package, run a CLI query without adding a provider key:
npm run build
fasm search "MCP server without an API key" --jsonThe response contract keeps result evidence, meta.execution, and
partialFailures separate. A provider timeout or challenge remains visible to
the agent instead of being converted into an unexplained empty result. This is
a contract example, not a live availability or search-quality benchmark.
After a global install, check the local runtime without making a search request:
npm install -g agent-search-mcp
fasm doctorRelated MCP server: websearch-skill
Why Agent Search MCP
Need | Product behavior |
Free web search | Zero-key sources work without an API account |
Provider cost control | Paid providers run only under an explicit routing policy |
Token cost control | Compact output and one evidence budget bound response size |
Multi-source evidence | Results retain provenance, relevance, provider-family count, and partial failures |
Chinese web search | Sogou and Baidu handle Chinese queries without a translation layer |
Lightweight self-hosting | Pure Node.js runtime with stdio, Streamable HTTP, and CLI access |
The difference from a plain multi-engine wrapper
Plain multi-engine aggregation | Agent Search MCP |
Returns N deduplicated results | Returns results plus the number of independent sources (provider families, not adapter names) |
A provider failure quietly drops some results | Every failure stays in |
Stops when the result count looks sufficient | Stops only after a quality gate (count, relevance, confidence, source coverage) and returns the |
Fixed-size output | One shared evidence budget bounds response tokens; compact text keeps provenance |
One adapter counts as one source | The same upstream through several adapters never inflates |
The one-minute offline demo replays these differences through the production evidence scorer and formatter:
Inspect the search evidence
Each JSON response includes one Search Evidence Packet. It answers the routing questions an agent needs before it uses a result:
Question | Response field |
Which adapters ran? |
|
Why did the router stop? |
|
Did the request hit a work limit? |
|
Was evidence truncated? |
|
Did an upstream provider fail? |
|
Do multiple adapters represent independent sources? |
|
Run the one-minute offline contract demo:
npm run demo:evidence
npm run demo:evidence -- --jsonIt replays three synthetic scenarios through the production evidence scorer, formatter, and MCP output helper: same-family adapter overlap, visible fallback failure, and a bounded quality-gate stop. It makes no live availability or search-quality claim and performs no network request.
The default free_first policy never spends a configured API credential.
free_only blocks paid providers. quality_escalation can call one configured
paid provider after free evidence misses the quality gate, while paid_first
tries that provider before the free fallback.
Request budgets cap adapter attempts, elapsed time, and admitted results. The evidence budget caps query-relevant passages across the complete response. Compact mode keeps full detail for the first results and reduces later entries to source-preserving references.
Measured token reduction
The checked-in bilingual fixture measures formatting with a locked tokenizer:
Output | Average tokens per query | Savings vs normal |
Normal | 2396.0 | |
Compact | 1650.1 | 31.1% |
Compact+ | 1633.0 | 31.8% |
This fixture verifies output formatting and evidence-packet behavior. It does not measure live engine availability or search quality. See the benchmark method and limitations.
How the search router works
flowchart LR
A["AI agent"] --> M["MCP search tools"]
M --> P["Provider and request policy"]
P --> F["Zero-key sources"]
P --> O["Optional paid provider"]
F --> E["Deduplicate, rank, and preserve failures"]
O --> E
E --> B["Evidence and token budget"]
B --> R["Compact multi-source result"]The router evaluates each search batch against separate result, relevance,
confidence, and provider-family gates. It stops after the evidence passes those
gates and exposes the decision in meta.execution. Provider failures stay
visible in partialFailures, so an empty result cannot hide an upstream error.
The competitive landscape (2026-08-07) maps the crowded baseline and the product gaps. It records source dates and fixed commits for facts that can change. The 2026-08-10 update adds competitor activity since then: direct local competitors are dormant, and token-efficient evidence is becoming an industry-explicit lever. The earlier source-level product comparison contains the architecture-specific evidence.
Engines
The runtime registers 16 adapters: 9 zero-key adapters and 7 optional API adapters.
Engine | Access | Languages | Role |
DuckDuckGo | Zero-key | en | General Web Search |
Sogou Search | Zero-key | zh | Chinese Web Search |
Bing | Zero-key | en, zh | Multilingual Web Search |
Baidu | Zero-key | zh | Chinese Web Search |
Wikipedia | Zero-key | en, zh, ja, de, fr, es, auto | Encyclopedic references |
Startpage | Zero-key | en, auto | Privacy-oriented Web Search |
Yandex | Zero-key | ru, en, auto | Russian and international Web Search |
Mojeek | Zero-key | en, auto | Independent privacy-oriented index |
Wiby | Zero-key | en | Independent small-Web index |
Brave Search |
| en, zh | Optional commercial Web Search |
Tavily Search |
| en, zh | Optional agent-oriented Search |
Exa Search |
| en, zh | Optional neural Search |
You.com Search |
| en, zh | Optional commercial Web Search |
Tencent Web Search API |
| zh | Optional official Chinese Web Search |
Bocha Web Search |
| zh, en | Optional Chinese-first AI Search |
Serper Google Search |
| en, zh, auto | Optional Google SERP Search |
Tools
Tool | Description | Best for |
| Multi-engine Web Search with bounded fallback | Quick facts and general discovery |
| Filtered waterfall search and optional enrichment | Domain policy and progressive verification |
| Extract a URL as clean Markdown | Reading complete source pages |
| Fetch a public GitHub repository README | Project documentation |
| Fetch a CSDN article | Chinese technical articles |
| Fetch a Juejin article | Chinese developer articles |
| Search evidence with an LLM synthesis hint | Agent-authored answers from cited evidence |
Capability controls
Environment | Default | Purpose |
| all / none | Tool registration allowlist and denylist; deny wins |
| all / none | Engine execution allowlist and denylist; deny wins |
| free_first | Default routing: free_first, quality_escalation, paid_first, or free_only |
| brave,exa,tavily,youcom,tencent_wsa,bocha,serper | Selects the first configured optional provider; not a quality claim |
| 16 | Adapter-attempt budget |
| 30000 | End-to-end elapsed-time budget |
| 100 | Admitted raw-result budget |
| 1200 | Evidence-character budget |
search_with_synthesis uses the same canonical structuredContent evidence
packet as the primary search tools and adds prompt_hint; its text content is
only a compact compatibility view. Execution metadata distinguishes scheduled
adapters from retry-inclusive adapter attempts. http_requests is null until
all adapter transports can report it without false precision.
Wiby is a genuine zero-key source backed by its official JSON API and is used late in the free waterfall as an independent small-Web supplement. Optional providers require user credentials; any signup credit or trial quota is provider-controlled and is not treated as permanent free access.
All tools are read-only and idempotent. Search cancellation reaches rate-limit waits, retries, provider requests, and optional enrichment. Enrichment can improve a snippet but cannot increase source confidence or independent source count.
free_search_advanced.time_range remains in the compatibility schema. The
server returns UNSUPPORTED_FILTER before searching because the general web
providers do not share one enforceable recency contract.
Configuration
The generated capability table above lists the default request budgets. These settings cover the common deployment choices:
Goal | Environment variables |
Add an optional provider |
|
Choose spend policy |
|
Reduce response tokens |
|
Restrict tools or engines |
|
Use an explicit proxy |
|
Use a user-owned proxy pool |
|
Persist the exact-result cache |
|
Enable optional semantic processing |
|
Adding an API key does not authorize paid traffic. The routing policy controls
provider use. The default exact-result cache stays in memory; setting
SEARCH_CACHE_DIRECTORY opts into local persistence. Semantic processing is
the only optional feature that uses Python and Model2Vec.
Proxy pools select a deterministic first exit from the logical query and keep
multi-step provider requests sticky. Only a transport failure can move to the
next configured exit; a failed transport is cooled for 60 seconds. HTTP
responses, including 403, 429, and challenge pages, never trigger proxy
switching and continue through the provider's existing cooldown contract.
Engine-specific single-proxy variables take precedence over their pool. Proxy
credentials are never printed by fasm doctor.
HTTP deployment
HTTP mode requires HTTP_AUTH_TOKEN unless you set
HTTP_ALLOW_UNAUTHENTICATED=true. Browser requests with an Origin header must
match ALLOWED_ORIGINS. See the HTTP deployment guide
for TLS termination, token rotation, and reverse-proxy examples.
CLI
The package includes the fasm CLI:
fasm search "TypeScript MCP server"
fasm search "query" --count 5 --engines bing,baidu,youcom --json
fasm extract "https://example.com"
fasm extract "https://example.com" --json
fasm doctor
fasm doctor --json
HTTP_AUTH_TOKEN=change-me MODE=http npx agent-search-mcpfasm doctor reads local configuration without network probes and never prints
credential or proxy values.
Documentation and evidence
Document | Contents |
Routing, evidence, provider families, and configuration | |
Competitor activity through 2026-08-10, positioning, and improvement priorities | |
Baseline competitors, expectations, and product gaps snapshot | |
Source-level review of Agent search products | |
Token fixture, live-run scope, and quality evaluation method | |
Provider policy, budgets, and migration notes | |
Pre-expansion packed-install matrix and limitations | |
Isolated protocol experiment and remaining gates |
Companion: Slim Guard
Agent Search controls retrieval work and compresses search evidence. mcp-slim-guard sits between an agent and MCP servers to handle tool-schema compression and security policy.
npm install -g mcp-slim-guardDevelopment
git clone https://github.com/lennney/agent-search-mcp.git
cd agent-search-mcp
npm install
npm run build
npm test
npm run dev # stdio mode
npm run dev:http # HTTP mode (port 3000)The stable package supports Node.js 18, 20, and 22. The isolated MCP 2026 experiment requires Node.js 20 or newer.
License
Based on open-websearch by Aas-ee.
If Agent Search MCP helps your agent, star the repository so other developers can find the project.
Maintenance
Related MCP Servers
- AlicenseAqualityFmaintenanceFree multi-source web search server for AI agents, with confidence scoring and token optimization.3227Apache 2.0
- AlicenseAqualityBmaintenanceEnables AI agents to perform multi-engine web search, fetch web pages, and extract clean Markdown content via MCP, with no API keys required.35MIT
- AlicenseAqualityAmaintenanceFree self-hosted web search for AI agents with multi-engine parallel search, semantic re-ranking, and native China network support. Zero API keys.227MIT
- AlicenseAqualityCmaintenanceA Grok-first multi-source search MCP for AI agents that integrates Grok, Tavily, AnySearch, and Firecrawl to provide unified search results, cross-verification, and web content fetching.3MIT
Related MCP Connectors
Multi-engine search for AI agents. Trust scoring, local corpus, MCP-native. Self-hostable, BYOK.
Web search for AI agents — one tool across 6 engines, routed to the cheapest + cached.
The best web search for your AI Agent
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/lennney/agent-search-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server