MCP Catalogs
Home

apra-fleet vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

apra-fleet
by Apra-Labs
filesystem
by modelcontextprotocol
Stars★ 39★ 85,748
30d uses
Score4577
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

apra-fleet · Summary

An MCP server that orchestrates AI coding agents across machines with doer-reviewer loops and multi-machine coordination.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

apra-fleet · Use cases

  • Coordinating multiple AI coding agents across different machines for parallel development
  • Implementing doer-reviewer loops for code quality assurance
  • Distributing computationally intensive tasks across machines via AI orchestration

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

apra-fleet · Install

Quick Start

**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 Configuration

Add to your Claude Desktop configuration:

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using 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 Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.