MCP Catalogs
Home

everything vs mcpX

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

everything
by modelcontextprotocol
mcpX
by Rudra78996
Stars★ 85,748★ 1
30d uses
Score7731
Official
Categories
Developer ToolsAI / LLM ToolsOther
Browser AutomationWeb ScrapingDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month9 mo ago

everything · Summary

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

mcpX · Summary

mcpX bridges AI applications with browser automation through MCP, enabling sophisticated web interaction workflows.

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

mcpX · Use cases

  • Automated web testing and quality assurance workflows
  • Data extraction and monitoring from websites
  • AI-powered browser automation for repetitive tasks

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

mcpX · Install

Installation

  1. Clone the repository: git clone https://github.com/Rudra78996/mcpX.git
  2. Install dependencies: npm install
  3. Build the project: npm run build
  4. Configure your MCP client to use the server

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcpx": {
      "command": "node",
      "args": ["/path/to/mcpX/dist/index.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.