searxng-mcp-server
Privacy-focused web search via SearXNG, allowing users to perform searches with various categories, languages, time ranges, and safe search settings.
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., "@searxng-mcp-serversearch for MCP protocol updates with safe search"
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.
SearXNG MCP Server
Privacy-focused web search via SearXNG for Model Context Protocol (MCP) clients.
Features
Streamable HTTP transport - Single HTTP endpoint for MCP communication
SearXNG integration - Privacy-focused search engine
Docker ready - Easy deployment with Docker Compose
TypeScript - Type-safe implementation
Related MCP server: SearXNG MCP Server
Quick Start
1. Start the server
You can start the server using one of the following Docker Compose configurations:
Standard Usage (compose.yml)
Uses the pre-built image from GitHub Container Registry. Recommended if you already have a SearXNG instance running (default: http://localhost:8080).
docker compose up -dDevelopment & Build (compose.dev.yml)
Builds the image from the local source code. Use this for development or if you want to modify the source.
docker compose -f compose.dev.yml up -d --buildProduction / Full Stack (compose.prod.yml)
Launches a complete stack including SearXNG, Nginx, and the MCP server. Use this if you don't have a SearXNG instance running yet. This setup includes:
searxng: SearXNG search engine instance
searxng-mcp-server: MCP server
nginx: Reverse proxy
docker compose -f compose.prod.yml up -d2. Verify the server is running
curl http://localhost:3000/healthExpected response:
{
"status": "ok",
"timestamp": "2026-02-15T04:10:23.000Z",
"service": "searxng-mcp-server"
}3. Enable JSON output in SearXNG
If you are running your own SearXNG instance (especially via Docker Compose), you might encounter a 403 Forbidden error when the MCP server tries to fetch search results. This happens because JSON output is disabled by default in SearXNG.
To fix this, edit your SearXNG's settings.yml and add json to the search formats:
search:
formats:
- html
- json # Add this line to enable JSON outputRestart your SearXNG container after making this change.
4. Configure your MCP client
Claude Code
Run the following command in Claude Code:
claude mcp add --transport http searxng http://localhost:3000/mcpOr add to ~/.claude.json
{
"mcpServers": {
"searxng": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
}
}Then restart Claude Desktop.
Cline
Add to your Cline configuration file:
{
"mcpServers": {
"searxng": {
"type": "streamableHttp",
"url": "http://localhost:3000/mcp"
}
}
}Available Tools
searxng_search
Perform web searches using SearXNG.
Parameters:
query(required): Search query stringcategory(optional): Search category -general,images,videos,files,news,map,music,social media(default:general)language(optional): Language code (default:all)time_range(optional): Time filter -day,week,month,yearsafesearch(optional): Safe search level -0(off),1(moderate),2(strict) (default:1)
Example:
{
"query": "TypeScript MCP server",
"category": "general",
"language": "ja"
}Response includes:
Search results with title, URL, content, score, category, published date
Suggestions for related searches
Search metadata (number of results, response time)
Environment Variables
Variable | Description | Default |
| SearXNG instance URL |
|
| HTTP server port |
|
| HTTP server host |
|
| Logging level |
|
Development
Prerequisites
Node.js 24+
pnpm 9.15.4+
Install dependencies
pnpm installBuild
pnpm buildRun in development mode
pnpm devRun in production mode
pnpm startTesting
MCP Inspector
MCP Inspector is a web-based tool for debugging and exploring MCP servers.
Test MCP connection
curl -X POST http://localhost:3000/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test-client","version":"1.0.0"}}}'Test search tool
curl -X POST http://localhost:3000/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"searxng_search","arguments":{"query":"test query"}}}'License
This project is released under the MIT License.
This server cannot be deployed
Maintenance
Related MCP Connectors
Serper MCP — wraps the Serper Google Search API (serper.dev)
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Provides AI assistants with access to Seltz's powerful Web Search capabilities.
Related MCP Servers
- AlicenseAqualityAmaintenanceAn MCP server implementation that integrates the SearxNG API, providing web search capabilities.29,324 npm1,246MIT
- AlicenseAqualityDmaintenanceIntegrates with SearXNG metasearch engine to provide powerful web search capabilities across multiple search engines with filtering options for categories, languages, time ranges, and safe search levels. Enables comprehensive web searches, autocomplete suggestions, and search engine configuration access through MCP-compatible applications.41MIT
- FlicenseNot gradedqualityDmaintenanceProvides a free web search tool to MCP clients by connecting to a self-hosted SearXNG metasearch instance, enabling users to search the web with customizable parameters like categories and time range.-
- AlicenseNot gradedqualityBmaintenanceEnables web search through a SearXNG instance via MCP, returning search result summaries.4MIT