everything vs ProxmoxMCP-Plus
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | ProxmoxMCP-Plus by RekklesNA | |
|---|---|---|
| Stars | ★ 85,748 | ★ 191 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Ops & InfraDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ProxmoxMCP-Plus · Summary
MCP server enabling Proxmox VE VM and LXC control through MCP and OpenAPI interfaces.
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
ProxmoxMCP-Plus · Use cases
- Automating VM and container provisioning through LLM agents
- Managing Proxmox infrastructure using natural language commands
- Implementing backup and snapshot workflows via automation tools
- Executing container commands with policy controls through AI agents
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-everythingProxmoxMCP-Plus · Install
Installation
Using PyPI
pip install proxmox-mcp-plus
proxmox-mcp-plusUsing Docker
docker run --rm -p 8811:8811 \
-e PROXMOX_API_KEY="$(openssl rand -hex 32)" \
-v "$(pwd)/proxmox-config/config.json:/app/proxmox-config/config.json:ro" \
ghcr.io/rekklesna/proxmoxmcp-plus:latestFor Claude Desktop
Add to Claude Desktop config:
{
"mcpServers": {
"proxmox-mcp-plus": {
"command": "python",
"args": ["/path/to/ProxmoxMCP-Plus/main.py"],
"env": {
"PROXMOX_MCP_CONFIG": "/path/to/ProxmoxMCP-Plus/proxmox-config/config.json"
}
}
}
}