ProxmoxMCP-Plus
Use MCP and OpenAPI to safely control Proxmox VE VMs, LXCs, backups, and snapshots from LLMs and AI agents.
File Explorer
Download Latest Version (.zip)- codeql-config.yml
- ci.yml
- codeql.yml
- publish-ghcr.yml
- publish-mcp-registry.yml
- publish-pypi.yml
- SECURITY.md
- architecture-overview.drawio-style.svg
- llm-proxmox-demo-flow.svg
- logo-proxmoxmcp-plus-400.png
- logo-proxmoxmcp-plus.png
- proxmoxmcp-demo.gif
- proxmoxmcp-demo.mp4
- proxmoxmcp-drawio-hero-main-refresh.svg
- proxmoxmcp-drawio-hero.svg
- proxmoxmcp-nature-architecture.svg
- create-test-vm.md
- download-iso-and-create-lxc.md
- README.md
- rollback-snapshot.md
- v0.2.0.md
- v0.2.1.md
- v0.4.0.md
- v0.4.1.md
- v0.4.2.md
- v0.4.3.md
- v0.4.4.md
- v0.4.5.md
- v0.4.6.md
- v0.4.7.md
- v0.4.8.md
- v0.4.9.md
- v0.5.0.md
- v0.5.1.md
- v0.5.10.md
- v0.5.11.md
- v0.5.12.md
- v0.5.13.md
- v0.5.14.md
- v0.5.2.md
- v0.5.3.md
- v0.5.4.md
- v0.5.5.md
- v0.5.6.md
- v0.5.7.md
- v0.5.8.md
- v0.5.9.md
- paramiko-cve-2026-44405.md
- _Sidebar.md
- API & Tool Reference.md
- Client Setup.md
- Container Command Execution.md
- Developer Guide.md
- Documentation Quality Plan.md
- Home.md
- Integrations Guide.md
- Operator Guide.md
- README.md
- Release & Upgrade Notes.md
- Security Guide.md
- Tool Selection Guide.md
- Troubleshooting.md
- agent-installation.md
- container-command-execution.md
- demo-script.md
- launch-post.md
- llms.txt
- opencode.jsonc.example
- proxmox-mcp.env.example
- README.md
- claude_desktop_config.example.json
- config.example.json
- config.live.example.json
- base.in
- dev.in
- runtime.txt
- start_openapi.sh
- __init__.py
- loader.py
- models.py
- __init__.py
- logging.py
- proxmox.py
- ssh_tunnel.py
- __init__.py
- colors.py
- components.py
- formatters.py
- templates.py
- theme.py
- __init__.py
- tooling.py
- __init__.py
- metrics.py
- __init__.py
- command_policy.py
- __init__.py
- builtin_tool_plugins.py
- jobs.py
- tool_registry.py
- __init__.py
- container_manager.py
- manager.py
- __init__.py
- backup.py
- base.py
- cluster.py
- containers.py
- definitions.py
- iso.py
- jobs.py
- logs.py
- node.py
- snapshots.py
- storage.py
- vm.py
- __init__.py
- docker_entrypoint.py
- mcp_http_auth.py
- openapi_proxy.py
- server.py
- test_real_contract.py
- diagnose_proxmox_connectivity.py
- mock_mcp_stdio.py
- run_openrouter_llm_smoke.py
- run_real_e2e.py
- conftest.py
- test_command_policy.py
- test_container_console.py
- test_docker_entrypoint.py
- test_formatting_components.py
- test_high_risk_tools.py
- test_jobs.py
- test_live_e2e_config.py
- test_log_tools.py
- test_logging.py
- test_mcp_http_auth.py
- test_openapi_proxy.py
- test_release_metadata.py
- test_security_hardening.py
- test_server.py
- test_ssh_tunnel.py
- test_tool_user_paths.py
- .dockerignore
- .gitignore
- .mcpbignore
- docker-compose.yml
- Dockerfile
- glama.json
- LICENSE
- main.py
- manifest.json
- pyproject.toml
- README.md
- requirements.txt
- server.json
- setup.py
- smithery.yaml
# Installation Guide
git clone https://github.com/RekklesNA/ProxmoxMCP-Plus
Downloads the entire project code from GitHub to your computer.
cd ProxmoxMCP-Plus
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install proxmox-mcp-plus
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
3. Docker
Easy- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker run --rm -p 8000:8000 \
Runs the built image as an actual container.
http://<docker-host>:8000/mcp
Type this command into your terminal and run it.
docker run --rm -p 8811:8811 \
Runs the built image as an actual container.
Pulled directly from this repo's README.
4. Python
Easypip install proxmox-mcp-plus
Installs the package published on PyPI directly β no need to clone the source.
uv pip install -e ".[dev]"
Installs the Python libraries listed in requirements.txt (or similar).
pip-audit -r requirements.txt
Type this command into your terminal and run it.
python -m build
Runs the Python script (or module).
Pulled directly from this repo's README.
