filesystem vs deep-research-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | deep-research-mcp-server by ssdeanx | |
|---|---|---|
| Stars | ★ 85,748 | ★ 70 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 9 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
deep-research-mcp-server · 概述
使用 Google Gemini 2.5 Flash 的深度研究 MCP 服务器,提供基于网络基础的迭代研究能力。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
deep-research-mcp-server · 使用场景
- 对复杂技术主题进行深度研究并迭代细化
- 生成包含引用和方法论的综合研究报告
- 通过 MCP 将高级研究功能集成到 AI 代理工作流中
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。
deep-research-mcp-server · 安装
安装
- 克隆仓库:
git clone https://github.com/ssdeanx/deep-research-mcp-server
cd deep-research-mcp-server- 安装依赖:
npm install- 设置环境变量:
创建 .env.local 文件:
GEMINI_API_KEY="your_gemini_key"
GEMINI_MODEL=gemini-2.5-flash
CONCURRENCY_LIMIT=5- 构建项目:
npm run build- 作为 MCP 服务器运行:
node --env-file .env.local dist/mcp-server.js**Claude Desktop 配置:** 添加到 claude_desktop_config.json:
{
"mcpServers": {
"deep-research": {
"command": "node",
"args": ["--env-file", ".env.local", "dist/mcp-server.js"]
}
}
}