MCP Catalogs
Home

everything vs forge-orchestrator

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

everything
by modelcontextprotocol
forge-orchestrator
by nxtg-ai
Stars★ 85,748★ 116
30d uses
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptRust
Last committhis monththis month

everything · Summary

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

forge-orchestrator · Summary

Rust-based MCP server for multi-AI task orchestration with file locking, knowledge capture and drift detection.

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

forge-orchestrator · Use cases

  • Coordinating multiple AI coding tools (Claude Code, Codex CLI, Gemini CLI) on the same repository
  • Preventing file conflicts through exclusive locking mechanism when multiple AI tools work on shared code
  • Capturing and reusing knowledge across different AI tool sessions to maintain context

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

forge-orchestrator · Install

Install

curl -fsSL https://forge.nxtg.ai/install.sh | sh
forge init
Claude Desktop Integration

Add to Claude Desktop config:

{
  "mcpServers": {
    "forge": {
      "command": "forge",
      "args": ["mcp"]
    }
  }
}
From Source
git clone https://github.com/nxtg-ai/forge-orchestrator
cargo build --release

Note: Single binary, 4.7 MB. No runtime dependencies.

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