Scrapling vs google-search
并排对比,帮你在这两个 MCP server 之间做选择。
Scrapling by D4Vinci | google-search by web-agent-master | |
|---|---|---|
| Stars | ★ 50,346 | ★ 595 |
| 30天用量 | — | — |
| 综合分 | 62 | 45 |
| 官方 | — | — |
| 分类 | 网页抓取AI / LLM 工具开发者工具 | 搜索网页抓取浏览器自动化 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 14 个月前 |
Scrapling · 概述
自适应网页抓取框架,具备解析能力和反爬虫功能,现已集成为 MCP 服务器。
google-search · 概述
基于Playwright的Google搜索工具,通过MCP服务器集成绕过反机器人检测。
Scrapling · 使用场景
- 从具有动态布局变化的网站提取结构化数据
- 自动代理轮换和反爬虫绕过的大规模网页爬取
- 将网页抓取功能集成到 AI 工作流中
google-search · 使用场景
- 使AI助手无需API密钥即可执行实时Google搜索
- 为开发者和研究人员提供付费SERP API的本地替代方案
- 促进从Google搜索结果中进行网页抓取和数据提取
- 支持需要最新网络信息和实时搜索能力的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"] } } } ``
google-search · 安装
# 从源码安装
git clone https://github.com/web-agent-master/google-search.git
cd google-search
# 安装依赖
npm install
# 编译TypeScript代码
npm run build
# 全局链接包(MCP功能必需)
npm link对于Claude Desktop集成:
{
"mcpServers": {
"google-search": {
"command": "npx",
"args": ["google-search-mcp"]
}
}
}