MCP Catalogs
Home

everything vs wcgw

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

everything
by modelcontextprotocol
wcgw
by rusiaaman
Stars★ 85,748★ 660
30d uses
Score7754
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsFile SystemAI / LLM Tools
LanguageTypeScriptPython
Last committhis month1 mo ago

everything · Summary

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

wcgw · Summary

An MCP server providing shell and code editing tools with interactive terminal access for AI agents.

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

wcgw · Use cases

  • AI-assisted software development with iterative code execution and debugging
  • Automated file system operations and batch processing through AI commands
  • Interactive shell access with the ability to resume and share task checkpoints

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

wcgw · Install

Installation

**Mac and Linux**

  1. Install uv using homebrew: brew install uv
  2. Create or update claude_desktop_config.json in ~/Library/Application Support/Claude/ with:
{
  "mcpServers": {
    "wcgw": {
      "command": "uvx",
      "args": ["--python", "3.12", "wcgw@latest"]
    }
  }
}
  1. Restart Claude Desktop

**Windows (WSL)**

  1. Install [uv](https://docs.astral.sh/uv/getting-started/installation/)
  2. Update claude_desktop_config.json in %APPDATA%\Claude\ with:
{
  "mcpServers": {
    "wcgw": {
      "command": "wsl.exe",
      "args": ["uvx", "--python", "3.12", "wcgw@latest"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.