MCP Catalogs
Home

turbo-flow vs everything

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

turbo-flow
by marcuspat
everything
by modelcontextprotocol
Stars★ 161★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
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.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.