MCP Catalogs
首页

apra-fleet vs filesystem

并排对比,帮你在这两个 MCP server 之间做选择。

apra-fleet
by Apra-Labs
filesystem
by modelcontextprotocol
Stars★ 39★ 85,748
30天用量
综合分4577
官方
分类
开发者工具AI / LLM 工具运维基建
本地文件系统开发者工具效率工具
实现语言TypeScriptTypeScript
最近提交本月本月

apra-fleet · 概述

MCP服务器,通过执行者-审查者循环和多机器协调方式编排AI编程代理。

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

apra-fleet · 使用场景

  • 协调多台机器上的多个AI编程代理进行并行开发
  • 实现执行者-审查者循环以确保代码质量
  • 通过AI编排在机器间分配计算密集型任务

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

apra-fleet · 安装

快速安装

**macOS (Apple Silicon)**

curl -fsSL https://github.com/Apra-Labs/apra-fleet/releases/latest/download/apra-fleet-installer-darwin-arm64 -o apra-fleet-installer && chmod +x apra-fleet-installer && ./apra-fleet-installer install

**Linux (x64)**

curl -fsSL https://github.com/Apra-Labs/apra-fleet/releases/latest/download/apra-fleet-installer-linux-x64 -o apra-fleet-installer && chmod +x apra-fleet-installer && ./apra-fleet-installer install

**Windows (x64)**

Invoke-WebRequest -Uri https://github.com/Apra-Labs/apra-fleet/releases/latest/download/apra-fleet-installer-win-x64.exe -OutFile apra-fleet-installer.exe; .\apra-fleet-installer.exe install

Claude Desktop 配置

添加到您的Claude Desktop配置中:

{
  "mcpServers": {
    "apra-fleet": {
      "command": "apra-fleet",
      "args": ["mcp"],
      "env": {}
    }
  }
}

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 中安装。

对比内容由 README + GitHub 公开数据自动生成,定期更新。