everything vs google-researcher-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | google-researcher-mcp by zoharbabin | |
|---|---|---|
| Stars | ★ 85,748 | ★ 35 |
| 30天用量 | — | — |
| 综合分 | 77 | 46 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 搜索网页抓取AI / LLM 工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
google-researcher-mcp · 概述
MCP 服务器提供谷歌搜索、网页抓取和文档解析功能,具有高级过滤能力。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
google-researcher-mcp · 使用场景
- 为研究助手提供网络搜索和信息综合能力
- 内容创作中的资料收集和引用
- 学术研究中的论文查找和引用提取
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythinggoogle-researcher-mcp · 安装
安装
Claude Desktop (macOS)
添加到 ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"google-researcher": {
"command": "npx",
"args": ["-y", "google-researcher-mcp"],
"env": {
"GOOGLE_CUSTOM_SEARCH_API_KEY": "YOUR_API_KEY_HERE",
"GOOGLE_CUSTOM_SEARCH_ID": "YOUR_SEARCH_ID_HERE"
}
}
}
}Claude Desktop (Windows)
在 %APPDATA%\Claude\claude_desktop_config.json 中添加相同配置。