template-repo vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
template-repo by AndrewAltimit | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 127 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具安全AI / LLM 工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 本月 | 本月 |
template-repo · 概述
高级代理编排模板,集成20个MCP服务器,提供安全、代码质量和多媒体工具。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
template-repo · 使用场景
- 多代理开发工作流程,实现自动代码审查和PR管理
- 针对AI生成代码的安全加固CI/CD流水线
- 通过残差流分析检测睡眠代理行为
- 通过运行时注入和共享内存IPC集成传统软件
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
template-repo · 安装
先决条件
- Linux系统,安装Docker (v20.10+) 和 Docker Compose (v2.0+)
设置步骤
- 克隆并设置:
``bash git clone https://github.com/AndrewAltimit/template-repo cd template-repo # 构建Rust CLI工具 cd tools/rust/board-manager && cargo build --release cd ../github-agents-cli && cargo build --release ``
- 设置API密钥:
``bash export OPENROUTER_API_KEY="your-key-here" # 用于OpenCode/Crush ``
- 配置Claude Desktop (创建或更新 ~/.config/claude/config.json):
``json { "mcpServers": { "template-repo": { "command": "path/to/board-manager", "args": [] } } } ``
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 中安装。