Scrapling vs one-search-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
Scrapling by D4Vinci | one-search-mcp by yokingma | |
|---|---|---|
| Stars | ★ 50,346 | ★ 114 |
| 30天用量 | — | — |
| 综合分 | 62 | 47 |
| 官方 | — | — |
| 分类 | 网页抓取AI / LLM 工具开发者工具 | 网页抓取搜索浏览器自动化 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 1 个月前 |
Scrapling · 概述
自适应网页抓取框架,具备解析能力和反爬虫功能,现已集成为 MCP 服务器。
one-search-mcp · 概述
OneSearch MCP 服务器提供网络搜索、抓取和内容提取功能,支持多个搜索引擎和本地浏览器自动化。
Scrapling · 使用场景
- 从具有动态布局变化的网站提取结构化数据
- 自动代理轮换和反爬虫绕过的大规模网页爬取
- 将网页抓取功能集成到 AI 工作流中
one-search-mcp · 使用场景
- 通过 MCP 使用多个搜索引擎进行网络搜索
- 抓取和提取网站内容进行分析
- 执行本地浏览器搜索,无需 API 密钥或费用
- 预处理网络内容供下游 AI 模型使用
Scrapling · 安装
安装 Scrapling MCP 服务器
- 通过 pip 安装 Scrapling 包:
``bash pip install scrapling ``
- 配置您的 MCP 客户端以使用 Scrapling 服务器。对于 Claude Desktop,添加到
claude_desktop_config.json:
``json { "mcpServers": { "scrapling": { "command": "python", "args": ["-m", "scrapling", "mcp"] } } } ``
one-search-mcp · 安装
安装
使用 Claude Desktop
将其添加到 Claude Desktop 配置文件中:
**macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json **Windows**: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"one-search-mcp": {
"command": "npx",
"args": ["-y", "one-search-mcp"],
"env": {
"SEARCH_PROVIDER": "local"
}
}
}
}手动安装
# 全局安装(可选)
npm install -g one-search-mcp
# 或直接使用 npx 运行
npx -y one-search-mcp使用 Docker
# 拉取镜像
docker pull ghcr.io/yokingma/one-search-mcp:latest在 Claude Desktop 配置中使用 Docker:
{
"mcpServers": {
"one-search-mcp": {
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/yokingma/one-search-mcp:latest"],
"env": {
"SEARCH_PROVIDER": "local"
}
}
}
}