MCP Catalogs
Home

turbo-flow vs filesystem

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

turbo-flow
by marcuspat
filesystem
by modelcontextprotocol
Stars★ 161★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguageShellTypeScript
Last committhis monththis month

turbo-flow · Summary

Advanced agentic development environment with 215+ MCP tools, GitNexus knowledge graph, and cross-session memory via Beads.

filesystem · Summary

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

turbo-flow · Use cases

  • Multi-agent software development with hierarchical swarm coordination
  • Cross-session project memory and context preservation
  • Automated code quality analysis and performance optimization

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

turbo-flow · Install

Installation

DevPod Installation

# macOS
brew install loft-sh/devpod/devpod

# Windows
choco install devpod

# Linux
curl -L -o devpod "https://github.com/loft-sh/devpod/releases/latest/download/devpod-linux-amd64"
sudo install devpod /usr/local/bin

Launch

# DevPod (recommended)
devpod up https://github.com/adventurewavelabs/turbo-flow --ide vscode

# Manual
git clone https://github.com/adventurewavelabs/turbo-flow -b main
cd turbo-flow
chmod +x devpods/setup.sh
./devpods/setup.sh
source ~/.bashrt
turbo-status

Claude Desktop Configuration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "ruflo": {
      "command": "npx",
      "args": ["ruflo@latest", "server"]
    },
    "gitnexus": {
      "command": "npx",
      "args": ["gitnexus", "server"]
    }
  }
}

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.