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 "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., "@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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/roamer7038/searxng-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server