mcp-searxng-public-extended
Provides web search capabilities via public SearXNG instances, with support for categories, engines, safesearch, time range, language, and pagination.
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., "@mcp-searxng-public-extendedSearch for the latest advancements in quantum computing"
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.
mcp-searxng-public-extended
English | Chinese
Free web search for your AI using public SearXNG instances.
Acknowledgment: Inspired by pwilkin/mcp-searxng-public, extended with parallel multi-server requests, global throttling, configurable parameters, and bilingual schema support (zh/en).
Features
HTML Parsing: Most public SearXNG instances disable JSON API, this server parses HTML responses directly
Rich Parameters: categories, engines, safesearch, time range, language, pagination, return fields
Parallel Racing & Deduplication: Randomly select
BATCH_SIZEservers, query in parallel, merge results from topMIN_SERVERSfastestAuto Throttling: Per-server request queue with configurable minimum interval, preventing rate limiting from public instances
Related MCP server: mcp-searxng
Usage with MCP Clients
Add to your MCP client configuration:
{
"mcpServers": {
"searxng": {
"args": [
"-y",
"@johnnren/mcp-searxng-public-extended"
],
"command": "npx",
"env": {
"SEARXNG_BASE_URL": "https://opnxng.com;https://priv.au",
"SEARXNG_DEFAULT_ENGINES": "google,duckduckgo,brave",
"SEARXNG_DEFAULT_PAGES": "1",
"SEARXNG_DEFAULT_SAFESARCH": "0",
"SEARXNG_RESULT_FIELDS": "url,title,summary",
"SEARXNG_VISIBLE_PARAMETERS": "query,categories,time_range,language,startPage"
}
}
}
}Hiding
pagesandengineswithSEARXNG_VISIBLE_PARAMETERSimproves stability (not all servers support all engines) and reduces response size (one page is usually enough).
Environment Variables
Variable | Description | Default |
| SearXNG server URLs (semicolon-separated) Required | - |
| Schema language: |
|
| Default language code | - |
| Servers to query per search (number or |
|
| Merge results from top N fastest servers |
|
| Default engines (comma-separated) | Server default |
| Default pages to fetch |
|
| Safe search level (0=off, 1=moderate, 2=strict) | Server default |
| Min interval between requests to same server (ms) |
|
| Fields included in result: url, title, summary, engine, sourceServer | All fields |
| Parameters visible to LLM |
|
Tool: search
Web search via SearXNG.
Parameters:
Parameter | Type | Required | Description |
| string | Yes | Search query |
| string | No | Categories: |
| string | No | Engines: |
| number | No | Level: 0=off, 1=moderate, 2=strict |
| string | No | Filter: |
| string | No | Language code (e.g., |
| number | No | Pages to fetch |
| number | No | Starting page number |
Returns: Array of { url, title, summary, engine, sourceServer }
Publishing
npm version patch # or minor/major
git push --follow-tagsLicense
MIT
Available Tools
1 toolsearchBRead-only
使用 SearXNG 进行网络搜索,返回最快有效结果。
| Name | Required | Description | Default |
|---|---|---|---|
| pages | No | 获取几页结果(建议每次获取 1 页)。默认: 1 | |
| query | Yes | 搜索查询 | |
| engines | No | 搜索引擎,用逗号分隔。支持:google, bing, duckduckgo, brave, qwant, startpage, wikipedia, github, stackoverflow, reddit, youtube, arxiv。默认: 不指定 | |
| language | No | 语言代码 (en, zh, ja)。默认: en | |
| startpage | No | 起始页码。默认: 1 | |
| categories | No | 搜索类别,用逗号分隔。支持:general, images, news, music, videos, science, it, social_media。默认: 不指定 | |
| safesearch | No | 安全搜索: 0=关闭, 1=中等, 2=严格。默认: 不指定 | |
| time_range | No | 过滤时间范围: day=一天内, week=一周内, month=一个月内, year=一年内。默认: 不指定 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true and destructiveHint=false, so the agent already knows this is a safe read operation. The description adds a small behavioral note (prioritizes fastest valid results) beyond what annotations state, but gives no detail on result structure, quota behavior, or failure modes. The safety profile is covered by annotations; the description adds only marginal behavioral context.
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?
A single compact sentence with zero filler, front-loading the core purpose before the behavioral qualifier. It is efficient, though it borders on restating the tool name; the 'fastest valid results' clause justifies its existence. Appropriately sized for a tool whose schema carries the parameter details.
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?
Given the tool is a general web search with a 100%-covered schema and read-only annotations, the description is minimally adequate. Since there is no output schema, the description might have mentioned the return format, and it does not explain result structure or pagination behavior beyond what 'fastest valid results' implies. An agent can call the tool correctly from the schema, but the return semantics are left unexplained.
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%: all 8 parameters, including the required query, have descriptions with defaults, ranges, and supported value lists (e.g., engines, categories, safesearch levels). The description itself adds no parameter-level detail, so the baseline 3 applies since the schema fully documents semantics.
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 names a specific verb (search) and resource (web via SearXNG), and adds the behavioral qualifier 'returns fastest valid results'. While concise, it clearly conveys what the tool does. No siblings are listed, so there is no differentiation burden; the purpose is unambiguous.
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?
There is no guidance on when to use this tool, no exclusions, and no mention of alternatives or circumstances that would make another tool preferable. The 'fastest valid results' clause hints at intent but does not instruct an agent on selection or preconditions. With no sibling tools the alternative-routing gap is muted, but still zero usage direction is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Only one tool exists, so there is no possibility of confusion or overlap. The tool's purpose is unambiguous.
The single tool name 'search' is a clear, simple verb that matches the server's purpose. There are no naming conventions to conflict.
A single tool is at the thin end of the range. While it covers basic web search, the server's 'extended' label suggests more tools might be expected, making the count feel slightly insufficient.
The search tool provides a basic search capability, but lacks specialized search categories or additional retrieval options that a 'public extended' SearXNG server might offer. The core workflow is covered, but no advanced features are exposed.
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 Connectors
Web search for AI agents — one tool across 6 engines, routed to the cheapest + cached.
The best web search for your AI Agent
LLM-ready web search + instant answers + URL-to-clean-text fetch for agents and RAG.
Provides AI assistants with access to Seltz's powerful Web Search capabilities.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to perform privacy-respecting web searches through SearXNG, with support for multiple search engines, categories, and advanced filtering options.25
- AlicenseAqualityDmaintenanceEnables AI assistants to perform web searches and read URL content via a SearXNG instance.218MIT
- AlicenseNot gradedqualityCmaintenanceIntegrates SearXNG API to give AI assistants web search and URL reading capabilities.17MIT
- FlicenseNot gradedqualityCmaintenanceProvides free web search, content fetching, image search, and deep research via SearXNG, no API keys required.
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/john-walks-slow/mcp-searxng-public'
If you have feedback or need assistance with the MCP directory API, please join our Discord server