MCP Catalogs
Home

everything vs OmniMCP

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

everything
by modelcontextprotocol
OmniMCP
by OpenAdaptAI
Stars★ 85,748★ 71
30d uses
Score7737
Official
Categories
Developer ToolsAI / LLM ToolsOther
Browser AutomationDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last committhis month14 mo ago

everything · Summary

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

OmniMCP · Summary

OmniMCP enables AI models to understand and interact with UI through visual perception and precise control using MCP.

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

OmniMCP · Use cases

  • Automating complex UI interactions based on visual understanding
  • Testing web applications with AI-driven test scenarios
  • Creating visual AI agents that can operate existing software interfaces

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

OmniMCP · Install

# Clone and install
git clone https://github.com/OpenAdaptAI/OmniMCP.git
cd OmniMCP
./install.sh

# Configure environment
cp .env.example .env
# Edit .env with your API keys

# Activate environment
source .venv/bin/activate

For Claude Desktop integration, add to your config.json:

{
  "mcpServers": {
    "omnimcp": {
      "command": "uv",
      "args": ["run", "python", "path/to/omnimcp/mcp_server.py"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.