MCP Catalogs
Home

everything vs open-computer-use

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

everything
by modelcontextprotocol
open-computer-use
by Wide-Moat
Stars★ 85,748★ 74
30d uses
Score7749
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsProductivityAI / LLM Tools
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

open-computer-use · Summary

MCP server providing Docker workspaces with browser, terminal, code execution and document skills for any LLM.

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

open-computer-use · Use cases

  • AI agent web scraping and data analysis with real-time browser interaction
  • Automated document generation (Word, Excel, PDF) with professional formatting
  • Code development and testing in isolated environments with full terminal access

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

open-computer-use · Install

Installation

git clone https://github.com/Wide-Moat/open-computer-use.git
cd open-computer-use
cp .env.example .env
# Edit .env — set OPENAI_API_KEY (or any OpenAI-compatible provider)

# 1. Start Computer Use Server (builds workspace image on first run, ~15 min)
docker compose up --build

# 2. Start Open WebUI (in another terminal)
docker compose -f docker-compose.webui.yml up --build

For MCP client integration, connect to http://localhost:8081/mcp for self-hosted or https://api.yambr.com/mcp/computer_use with API key for hosted version.

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