- Home
- MCP servers
- Proxmox
Proxmox
- other
1
GitHub Stars
other
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
You deploy and manage an enterprise-grade Proxmox MCP Server that provides secure, centralized access to Claude Code across Proxmox environments. It offers a hardened runtime, comprehensive security controls, and production-ready monitoring so you can manage VMs/LXCs and Docker-based workloads from a single control plane.
How to use
Connect your Claude Code environment to the Proxmox MCP Server to enable centralized command execution, security auditing, and health monitoring. Add the MCP endpoint to Claude Code with a single HTTP-based configuration, then use Claude Code workflows to interact with Proxmox resources through the MCP server.
How to install
Prerequisites you need before installing the MCP server.
-
A Debian-based system (Proxmox VE) with internet access.
-
Root access to install and configure services.
Step-by-step installation commands you should run in order.
# Clone the MCP server repository
git clone https://github.com/YOUR-ORG/ProxmoxMCP-Production.git
# Enter the project directory
cd ProxmoxMCP-Production
# Run the installation script (requires sudo)
sudo ./scripts/install/install.sh
# Add the MCP server endpoint to Claude Code
# Use the actual IP of your MCP server in place of YOUR_IP
claude mcp add --transport http proxmox-production http://YOUR_IP:8080/api/mcp
# Use the MCP server from any Claude Code project
cd /any/project && claude
Additional steps and notes
After installation, you can verify the MCP server health and review logs to ensure everything runs smoothly.
Security and production readiness
This MCP server is designed for enterprise-grade security and reliability. It includes a hardened container runtime, strict privilege isolation, comprehensive auditing, and health-driven auto-restart to minimize downtime.
Key health and maintenance commands help you monitor and recover services quickly.
# Health check
curl http://YOUR_IP:8080/health
# View logs
cd /opt/proxmox-mcp/docker && docker-compose logs -f
# Restart service
cd /opt/proxmox-mcp/docker && docker-compose restart
# Update installation
cd /opt/proxmox-mcp && git pull && sudo ./scripts/install/install.sh