searxng-mcp
Provides privacy-focused web search capabilities through SearXNG, supporting categories, language filters, time ranges, and HTTP Basic Auth.
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-mcpsearch for best practices in cybersecurity"
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
A Model Context Protocol (MCP) server that provides privacy-focused web search capabilities through SearXNG, using Streamable HTTP transport.
Features
Privacy-Focused Search: Leverages SearXNG for anonymous, tracker-free web searches
Streamable HTTP Transport: Modern HTTP-based MCP protocol for remote access
Environment Variables: All configuration via environment variables
HTTP Basic Auth: Support for authentication-protected SearXNG instances
Advanced Search Parameters: Support for categories, language filters, and time ranges
Async Architecture: Built with async/await for non-blocking operations
Related MCP server: mcp_server_searXNG
Installation
# Clone the repository
git clone <repo-url>
cd searxng-mcp
# Install dependencies
pip install -e .
# Or using uv
uv pip install -e .Configuration
All configuration is done via environment variables:
Variable | Description | Default |
| Base URL of your SearXNG instance |
|
| Username for HTTP Basic Auth (optional) | - |
| Password for HTTP Basic Auth (optional) | - |
| Request timeout in seconds |
|
| Maximum results allowed per query |
|
| Server host address |
|
| Server port |
|
| Base URL path for the MCP server |
|
| Logging verbosity |
|
Using Environment File
Create a searxng.env file from the example:
cp searxng.env.example searxng.envEdit searxng.env with your settings:
# SearXNG Configuration
SEARXNG_BASE_URL=https://example.com/searxng
SEARXNG_USERNAME=your_username
SEARXNG_PASSWORD=your_password
SEARXNG_TIMEOUT=10
MAX_RESULTS_LIMIT=50
# Server Configuration
HOST=0.0.0.0
PORT=3000
BASE_URL=/searxng-mcp
# Logging
LOG_LEVEL=INFORunning
Using Python (with env file)
# Load from searxng.env file and run
export $(grep -v '^#' searxng.env | xargs) && python -m searxng_mcpUsing CLI
# With environment variables inline
SEARXNG_BASE_URL=https://example.com/searxng \
SEARXNG_USERNAME=your_username \
SEARXNG_PASSWORD=your_password \
searxng-mcpUsing Docker
Build the image:
docker build -t searxng-mcp .Run with environment file:
docker run -d \
--name searxng-mcp \
--env-file searxng.env \
-p 127.0.0.1:3000:3000 \
searxng-mcpRun with inline environment variables:
docker run -d \
--name searxng-mcp \
-e SEARXNG_BASE_URL=https://example.com/searxng \
-e SEARXNG_USERNAME=your_username \
-e SEARXNG_PASSWORD=your_password \
-e HOST=0.0.0.0 \
-e PORT=3000 \
-p 127.0.0.1:3000:3000 \
searxng-mcpSearXNG Instance
You need a running SearXNG instance. Options:
Local:
docker run -d --name searxng -p 8888:8080 searxng/searxng:latestRemote: Use any public or private SearXNG instance
If your SearXNG instance is protected with HTTP Basic Auth, set SEARXNG_USERNAME and SEARXNG_PASSWORD.
MCP Client Configuration
Configure your MCP client to connect to this server:
{
"mcpServers": {
"searxng": {
"type": "streamable-http",
"url": "http://localhost:3000"
}
}
}If using a reverse proxy:
{
"mcpServers": {
"searxng": {
"type": "streamable-http",
"url": "http://your-server/searxng-mcp"
}
}
}Usage
Once connected, use the web_search tool:
Basic Search
Search for "Python async programming tutorials"Search with Maximum Results
Search for "machine learning news" with max_results=20Category-Specific Search
Available categories:
general- General web searchnews- News articlesimages- Image searchvideos- Video contentfiles- File downloadsscience- Scientific papers and resourcesit- IT and tech resources
Language-Specific Search
Use ISO 639-1 language codes: en, de, fr, es, zh, ja, etc.
Time-Range Filtered Search
Available time ranges: day, week, month, year
Using with Reverse Proxy
For production deployment with a custom base URL, use a reverse proxy:
Nginx Example
location /searxng-mcp/ {
proxy_pass http://127.0.0.1:3000/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}License
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
- 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/Jian-Zhan/searxng-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server