filesystem vs swarmclaw
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | swarmclaw by swarmclawai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 486 |
| 30天用量 | — | — |
| 综合分 | 77 | 51 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
swarmclaw · 概述
SwarmClaw 是一个支持 MCP 工具的自托管多智能体框架,用于自主智能体群。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
swarmclaw · 使用场景
- 构建和管理具有委派能力的自主代理团队
- 创建跨多个 LLM 提供商的自托管 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 中安装。
swarmclaw · 安装
安装 SwarmClaw
桌面应用(推荐)
从 [swarmclaw.ai/downloads](https://swarmclaw.ai/downloads) 下载一键安装程序 适用于 macOS、Windows 和 Linux。
全局安装
npm i -g @swarmclawai/swarmclaw
swarmclawDocker
git clone https://github.com/swarmclawai/swarmclaw.git
cd swarmclaw
mkdir -p data
touch .env.local
docker compose up -d --buildClaude Desktop 集成
要将 SwarmClaw 作为 MCP 服务器与 Claude Desktop 一起使用:
- 添加到 Claude Desktop 配置:
{
"mcpServers": {
"swarmclaw": {
"command": "swarmclaw",
"args": ["server"]
}
}
}