mcpx vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcpx by AIGC-Hackers | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 20 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcpx · Summary
A command-line tool that exposes remote MCP servers as agent-friendly commands with OAuth support and schema discovery.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcpx · Use cases
- Automating workflows by calling MCP server tools through CLI commands
- Integrating multiple MCP servers into a single command interface for AI agents
- Managing and authenticating access to various MCP servers from a single registry
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 · Install
Install
Install the latest release:
curl -fsSL https://raw.githubusercontent.com/AIGC-Hackers/mcpx/main/install.sh | bashBy default, the installer downloads the executable JS bundle from GitHub Releases and installs it to ~/.local/bin/mcpx.
Set MCPX_INSTALL_DIR to choose another install directory.
Claude Desktop Integration
Add to Claude Desktop configuration:
{
"mcpServers": {
"mcpx": {
"command": "mcpx",
"args": []
}
}
}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