websearch-mcp

websearch-mcp

A self-hosted MCP server that gives AI agents deep internet research capabilities — no API keys required, powered by SearxNG, Playwright, and Docker.

Category
访问服务器

README

websearch-mcp

A self-hosted MCP server that gives AI agents deep internet research capabilities — no API keys required.

Powered by SearxNG (meta search engine), Playwright (web scraping), and Docker (Python sandbox).

Tools

Tool Description
search_internet Meta search via SearxNG with speed/balanced/quality modes, domain dedup, and trust scoring
fetch_page Scrape web pages with Playwright (stealth mode) + Readability extraction
execute_python Run Python code in an isolated Docker sandbox (no network, resource limits)
get_search_suggestions Get autocomplete suggestions for partial queries

Prerequisites

  • Node.js >= 20
  • Docker (for SearxNG and Python sandbox)
  • Playwright Chromium (auto-installed on first run)

Quick Start

1. Start SearxNG

docker compose up -d searxng

Wait for it to be healthy:

curl -sf http://localhost:8080/healthz

2. Install dependencies and build

npm install
npx playwright install chromium
npm run build

3. Run the server

node dist/index.js

The server communicates over stdio (MCP protocol). Connect it to any MCP-compatible client.

MCP Client Configuration

Claude Desktop / Claude Code

Add to your MCP settings:

{
  "mcpServers": {
    "websearch": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/websearch-mcp/dist/index.js"],
      "env": {
        "SEARXNG_URL": "http://localhost:8080"
      }
    }
  }
}

Tool Reference

search_internet

Search the internet using SearxNG meta-search engine.

Parameters:

Parameter Type Default Description
query string required Search query (1-500 chars)
category enum general general, news, science, images
max_results int 10 Max results (1-50)
mode enum balanced speed (1 page, 5 results), balanced (1 page), quality (3 pages, dedup)
language string "" Language code filter (e.g. en, es, fr)

Features:

  • Deduplication by exact URL
  • Max 2 results per domain (ignoring www prefix)
  • Trust scoring via config/website-weight-config.json

fetch_page

Fetch and extract content from a web page.

Parameters:

Parameter Type Default Description
url string required URL to fetch (http/https only)
extract_mode enum readable snippet (meta description or first 200 chars), readable (Readability), full (raw HTML)
timeout int 10000 Page load timeout in ms (1000-30000)
wait_for string - CSS selector to wait for before extracting

Features:

  • Stealth mode (custom user-agent, webdriver bypass)
  • Auto-managed browser pool with idle timeout
  • Content truncated to 50,000 characters

execute_python

Execute Python code in an isolated Docker container.

Parameters:

Parameter Type Default Description
code string required Python code to execute (max 100,000 chars)
timeout int 60000 Execution timeout in ms (1000-300000)
memory_limit_mb int 512 Memory limit in MB (128-4096)
save_artifacts bool false Save output files as artifacts

Security:

  • Network disabled during code execution
  • All Linux capabilities dropped
  • Resource limits enforced (RAM + CPU)
  • Auto-detects and installs missing pip packages in a separate network-enabled stage

get_search_suggestions

Get autocomplete suggestions for a partial query.

Parameters:

Parameter Type Default Description
query string required Partial query (min 2 chars)
max_suggestions int 5 Max suggestions (1-10)

Falls back to simple query expansion (e.g. "query tutorial", "query examples") when SearxNG autocomplete is unavailable.

Configuration

Environment Variables

Variable Default Description
SEARXNG_URL http://localhost:8080 SearxNG instance URL
SEARXNG_TIMEOUT_MS 10000 Search request timeout
SEARXNG_MAX_RETRIES 3 Max retries for failed requests
SEARXNG_RETRY_DELAY_MS 1000 Base retry delay (exponential backoff)
FETCH_TIMEOUT_MS 10000 Page fetch timeout
FETCH_MAX_CONTENT_LENGTH 50000 Max content length for fetched pages
PYTHON_SANDBOX_MEMORY_MB 512 Default Python sandbox memory limit
PYTHON_SANDBOX_CPU 1 Default Python sandbox CPU limit
PYTHON_SANDBOX_TIMEOUT_MS 60000 Default Python sandbox timeout

Trust Weights

config/website-weight-config.json defines domain trust scores from -1.0 to 1.0. Domains with negative scores are filtered out. Others are reordered by score (highest trust first).

{
  "wikipedia.org": 1.0,
  "arxiv.org": 0.95,
  "github.com": 0.9,
  "stackoverflow.com": 0.85,
  "medium.com": 0.5,
  "reddit.com": 0.3,
  "twitter.com": 0.2
}

Development

# Build
npm run build

# Run in dev mode (auto-reload)
npm run dev

# Run tests
npm test

# Lint
npm run lint

# Type check
npm run typecheck

Project Structure

websearch-mcp/
├── src/
│   ├── index.ts                 # MCP server entry point
│   ├── lib/
│   │   ├── browser-pool.ts      # Playwright browser pool with stealth mode
│   │   ├── config.ts            # Configuration loader
│   │   ├── docker-sandbox.ts    # Docker-based Python sandbox
│   │   ├── searxng-client.ts    # SearxNG API client with retry
│   │   └── trust-filter.ts      # Domain trust scoring and filtering
│   └── tools/
│       ├── fetch.ts             # fetch_page tool
│       ├── python.ts            # execute_python tool
│       ├── search.ts            # search_internet tool
│       └── suggestions.ts       # get_search_suggestions tool
├── tests/
├── config/
│   └── website-weight-config.json
├── infra/
│   └── searxng/settings.yml     # SearxNG configuration
├── docker-compose.yml           # SearxNG container
├── package.json
├── tsconfig.json
└── README.md

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选