MCP Catalogs
Home

template-repo vs everything

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

template-repo
by AndrewAltimit
everything
by modelcontextprotocol
Stars★ 127★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsSecurityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageRustTypeScript
Last committhis monththis month

template-repo · Summary

Advanced agent orchestration template integrating 20 MCP servers for security, code quality, and multimedia tools.

everything · Summary

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

template-repo · Use cases

  • Multi-agent development workflows with automated code review and PR management
  • Security-hardened CI/CD pipelines for AI-generated code
  • Detecting sleeper agent behaviors through residual stream analysis
  • Legacy software integration via runtime injection and shared memory IPC

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

template-repo · Install

Prerequisites

  • Linux system with Docker (v20.10+) and Docker Compose (v2.0+)

Setup Steps

  1. Clone and setup:

``bash git clone https://github.com/AndrewAltimit/template-repo cd template-repo # Build Rust CLI tools cd tools/rust/board-manager && cargo build --release cd ../github-agents-cli && cargo build --release ``

  1. Set API keys:

``bash export OPENROUTER_API_KEY="your-key-here" # For OpenCode/Crush ``

  1. Configure Claude Desktop (create or update ~/.config/claude/config.json):

``json { "mcpServers": { "template-repo": { "command": "path/to/board-manager", "args": [] } } } ``

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.