dotbot vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
dotbot by andresharpe | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 50 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 45 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | PowerShell | TypeScript |
| 最近提交 | 本月 | 本月 |
dotbot · 概述
零依赖的 MCP 服务器,为团队提供结构化、可审计的 AI 辅助开发。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
dotbot · 使用场景
- 团队 AI 开发,具备合规和知识共享的可审计追踪
- 多步骤 AI 编码工作流程,具有任务依赖和每任务模型选择
- 企业工作流和堆栈注册库,用于标准化 AI 辅助开发流程
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
dotbot · 安装
安装步骤
- **全局安装 dotbot**:
Install-Module Dotbot -Scope CurrentUser- **在项目中初始化**:
cd your-project
dotbot init
dotbot init -Workflow <工作流名称> -Stack <堆栈名称>- **在 Claude Desktop 中配置 MCP 服务器**:
{
"mcpServers": {
"dotbot": {
"command": "pwsh",
"args": ["-NoProfile", "-File", ".bot/systems/mcp/dotbot-mcp.ps1"]
}
}
}- **启动网络仪表板**:
.bot\go.ps1filesystem · 安装
安装
使用 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 中安装。