chrome-devtools-mcp vs google-search
并排对比,帮你在这两个 MCP server 之间做选择。
chrome-devtools-mcp by ChromeDevTools | google-search by web-agent-master | |
|---|---|---|
| Stars | ★ 39,757 | ★ 595 |
| 30天用量 | — | — |
| 综合分 | 65 | 45 |
| 官方 | — | — |
| 分类 | 浏览器自动化开发者工具网页抓取 | 搜索网页抓取浏览器自动化 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 14 个月前 |
chrome-devtools-mcp · 概述
Chrome DevTools MCP 服务器让 AI 编码代理通过 MCP 协议控制和检查实时 Chrome 浏览器。
google-search · 概述
基于Playwright的Google搜索工具,通过MCP服务器集成绕过反机器人检测。
chrome-devtools-mcp · 使用场景
- AI 代理自动执行网页测试和验证
- Web 应用性能分析和优化
- 通过 AI 驱动的检查调试 Web 应用程序
google-search · 使用场景
- 使AI助手无需API密钥即可执行实时Google搜索
- 为开发者和研究人员提供付费SERP API的本地替代方案
- 促进从Google搜索结果中进行网页抓取和数据提取
- 支持需要最新网络信息和实时搜索能力的AI应用
chrome-devtools-mcp · 安装
安装
将以下配置添加到您的 MCP 客户端:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest"]
}
}
}对于无头模式下的基本浏览器任务:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest", "--slim", "--headless"]
}
}
}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"]
}
}
}