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 | — | — |
| Score | 77 | 31 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 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-everythingmcpX · Install
Installation
- Clone the repository:
git clone https://github.com/Rudra78996/mcpX.git - Install dependencies:
npm install - Build the project:
npm run build - 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"]
}
}
}