filesystem vs github-brain
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | github-brain by wham | |
|---|---|---|
| Stars | ★ 85,748 | ★ 75 |
| 30天用量 | — | — |
| 综合分 | 77 | 46 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | GitHub 集成开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 3 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
github-brain · 概述
GitHub Brain MCP 服务器使用本地数据库快速总结 GitHub 讨论、问题和 PR。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
github-brain · 使用场景
- 总结 GitHub 讨论和 PR 以用于团队会议
- 分析特定时间段内用户的贡献
- 创建高效的 GitHub 活动报告而不受 API 限制
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 中安装。
github-brain · 安装
npm i -g github-brain或使用 npx:
npx github-brain@latestMCP 配置
Claude Desktop
添加到 Claude MCP 配置文件:
{
"mcpServers": {
"github-brain": {
"type": "stdio",
"command": "github-brain",
"args": ["mcp"],
"env": {
"ORGANIZATION": "你的组织"
}
}
}