Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"search": {
"env": {
"SEARCH_URL": "https://search.example.com",
"SEARCH_AUTH": "user:password",
"SEARCH_RECOMMENDED_ENGINES": "duckduckgo|general purpose, privacy;bing|images, news;sogou|Chinese web;sogou wechat|WeChat articles;stackoverflow|programming Q&A;github|code repositories"
},
"args": [
"-y",
"@caikiji/mcp-search"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for web search powered by SearXNG — privacy-respecting self-hosted metasearch
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @caikiji/mcp-search against OSV.dev.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Search and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for web search — privacy-respecting, self-hosted metasearch
Installation · Configuration · Tools · 中文文档
info to see engine counts; info scope: "engines" to list allnpm install -g @caikiji/mcp-search
| Variable | Default | Description |
|---|---|---|
SEARCH_URL | — | Your SearXNG instance URL (required) |
SEARCH_AUTH | — | Basic auth credentials (user:pass). Leave empty if your instance is public. |
SEARCH_TIMEOUT | 15000 | SearXNG API timeout (ms) |
SEARCH_FETCH_TIMEOUT | 15000 | Page fetch timeout (ms) |
SEARCH_DEFAULT_COUNT | 10 | Default results per search (1–50) |
SEARCH_MAX_LENGTH | 8000 | Max chars for result content (500–50000) |
SEARCH_SNIPPET_LENGTH | 300 | Max chars for result snippet (truncated at word boundary) |
SEARCH_FETCH_UA | Chrome UA | User-Agent for page fetching |
SEARCH_RECOMMENDED_ENGINES | — | Semicolon-separated recommended engines, optionally with engine|description. Shown in info output. See config example below. |
{
"mcpServers": {
"search": {
"command": "npx",
"args": ["-y", "@caikiji/mcp-search"],
"env": {
"SEARCH_URL": "https://search.example.com",
"SEARCH_AUTH": "user:password",
"SEARCH_RECOMMENDED_ENGINES": "duckduckgo|general purpose, privacy;bing|images, news;sogou|Chinese web;sogou wechat|WeChat articles;stackoverflow|programming Q&A;github|code repositories"
}
}
}
}
| Tool | Arguments | Description |
|---|---|---|
query | query, [language], [categories], [time_range], [engines], [pageno], [count], [format] | Web search with dedup, snippet, and source info. format: "compact" for minimal token usage. |
result | url, [max_length] | Fetch a URL from results and return as Markdown. Works on most blogs/docs sites. |
info | [scope] | Instance info. Default: counts, categories, settings. scope: "engines" for full list with categories. |
query parameters| Param | Description |
|---|---|
query | Search query (required) |
site | Restrict to domain, e.g. github.com. Prepends site: to the query. |
language | Language code (zh-CN, en-US, auto). Default: auto |