filesystem vs open-brain-template
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | open-brain-template by wefilmshit | |
|---|---|---|
| Stars | ★ 85,748 | ★ 23 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | HTML |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
open-brain-template · 概述
为AI代理提供持久化记忆系统的可视化面板,支持MCP协议集成。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
open-brain-template · 使用场景
- AI重度用户需要在多个会话和工具间保持一致的上下文
- 开发团队希期能在团队成员间共享项目特定的规则和偏好
- 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 中安装。
open-brain-template · 安装
安装步骤
- 创建一个 [Supabase](https://supabase.com) 项目
- 克隆此仓库
- 替换
index.html中的YOUR_SUPABASE_URL和YOUR_SUPABASE_ANON_KEY - 将您的电子邮件添加到
ALLOWED_EMAILS - 部署到 [Vercel](https://vercel.com)
可选组件
- **SessionStart 钩子**: 添加到
~/.claude/settings.json:
``json { "hooks": { "SessionStart": [ { "hooks": [ { "type": "command", "command": "$HOME/.claude/hooks/session-start-memory.sh", "timeout": 15 } ] } ] } } ``
- **Memory Steward**: 按照 [docs/memory-steward.md](docs/memory-steward.md) 中的说明操作