gpt-researcher vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
gpt-researcher by assafelovic | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 27,100 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 61 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具网页抓取效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
gpt-researcher · 概述
一个自主研究代理,使用任何 LLM 提供商进行深度研究,并通过 MCP 服务器连接专业数据源。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
gpt-researcher · 使用场景
- 市场研究和竞争分析
- 学术文献综述和综合
- 技术文档和研究
- 调查和事实核查
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
gpt-researcher · 安装
安装
- 安装 Python 3.11 或更高版本
- 克隆仓库:
``bash git clone https://github.com/assafelovic/gpt-researcher.git cd gpt-researcher ``
- 在 .env 文件中设置 API 密钥:
``bash export OPENAI_API_KEY={您的 OpenAI API 密钥} export TAVILY_API_KEY={您的 Tavily API 密钥} ``
- 安装依赖:
``bash pip install -r requirements.txt ``
- 运行服务器:
``bash python -m uvicorn main:app --reload ``
要使用 MCP 集成,请参阅 [gptr-mcp 仓库](https://github.com/assafelovic/gptr-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-everything