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 | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Browser AutomationDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 14 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-everythingOmniMCP · 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/activateFor Claude Desktop integration, add to your config.json:
{
"mcpServers": {
"omnimcp": {
"command": "uv",
"args": ["run", "python", "path/to/omnimcp/mcp_server.py"]
}
}
}