proxmox-mcp
An MCP server that exposes Proxmox VE node/cluster as tools for MCP clients, enabling management of VMs and containers including power control, resource reconfiguration, snapshots, and backups.
README
proxmox-mcp
A small MCP server that exposes a Proxmox VE
node/cluster as tools any MCP client (Claude Code, Claude Desktop) can call —
so instead of hand-writing curl against the Proxmox REST API, the assistant
calls clean tools like list_guests or start_guest.
Scope: read, power control, limited reconfigure (CPU/memory), plus snapshots and one-shot backups. It can inspect everything, start/stop/shutdown/reboot guests, adjust a guest's cores/memory, and manage restore points and vzdump backups. It does not create or delete the guests themselves.
Tools
| Tool | Effect |
|---|---|
list_nodes() |
Nodes with status, CPU, memory (GB), uptime |
list_guests(type?) |
All VMs (qemu) and containers (lxc): vmid, name, node, status, usage |
guest_status(node, vmid, type) |
Detailed status of one guest |
guest_config(node, vmid, type) |
Full provisioning config: cores, memory (MB), disks/mounts, network |
guest_network(node, vmid, type) |
Live interfaces + IP addresses (LXC direct; QEMU needs guest agent) |
storage(node?) |
Storage pools with real usage (GB, %) |
storage_content(node, storage, content?) |
What's on a storage pool: templates, ISOs, backups, disk images |
recent_tasks(node, limit?) |
Recent task log for a node |
task_status(node, upid, log_lines?) |
One task's status, exit status, and log tail (by UPID) |
start_guest(node, vmid, type) |
Start a stopped guest |
shutdown_guest(node, vmid, type) |
Graceful shutdown (preferred) |
stop_guest(node, vmid, type) |
Hard stop (pulls the cord) |
reboot_guest(node, vmid, type) |
Graceful reboot |
set_guest_resources(node, vmid, type, cores?, memory_mb?) |
Reconfigure CPU cores and/or memory |
list_snapshots(node, vmid, type) |
A guest's snapshots |
create_snapshot(node, vmid, type, name, description?) |
Take a snapshot |
rollback_snapshot(node, vmid, type, name, confirm?) |
Irreversible — roll back to a snapshot (typed-confirm) |
delete_snapshot(node, vmid, type, name) |
Delete a snapshot |
list_backups(node, storage, vmid?) |
Backup archives on a storage (newest first) |
create_backup(node, vmid, storage, mode?, compress?) |
Back up a guest now (vzdump) |
type is "qemu" (VM) or "lxc" (container). Use list_guests to find
vmid/node/type.
Example
Ask your assistant "which guests use the most memory, and is anything
stopped?" — it calls list_guests() and gets clean, ready-to-reason data:
[
{"vmid": 100, "name": "web", "node": "pve1", "type": "lxc", "status": "running", "cpu_pct": 0.4, "mem_used_gb": 0.21, "mem_max_gb": 1.0, "uptime_hours": 412.6},
{"vmid": 101, "name": "db", "node": "pve1", "type": "qemu", "status": "running", "cpu_pct": 3.1, "mem_used_gb": 6.84, "mem_max_gb": 8.0, "uptime_hours": 412.6},
{"vmid": 102, "name": "backups", "node": "pve2", "type": "lxc", "status": "stopped", "cpu_pct": 0.0, "mem_used_gb": 0.0, "mem_max_gb": 2.0, "uptime_hours": 0.0}
]
From there it can start_guest("pve2", 102, "lxc") or set_guest_resources(...)
— each a single-purpose, confirmable action, not a freeform shell command.
Setup
Linux / macOS
git clone https://github.com/nrohozen/proxmox-mcp
cd proxmox-mcp
python3 -m venv .venv
.venv/bin/python -m pip install -r requirements.txt
cp .env.example .env # then edit .env with your real values
Windows (PowerShell)
git clone https://github.com/nrohozen/proxmox-mcp
cd proxmox-mcp
py -3.12 -m venv .venv
.venv\Scripts\python -m pip install -r requirements.txt
copy .env.example .env # then edit .env with your real values
Prefer a package install?
pip install .exposes aproxmox-mcpconsole command; set thePROXMOX_*vars in the environment or a.envin the working directory.
Configuration (.env)
Config lives in a .env file next to server.py (gitignored). server.py
loads it automatically, so the MCP client config just launches the server — no
env block required. Copy .env.example to .env and set:
| Var | Example | Notes |
|---|---|---|
PROXMOX_BASE_URL |
https://proxmox.example.com:8006 |
scheme + host (+ optional :port) |
PROXMOX_TOKEN_ID |
mcp@pve!proxmox |
API token id (see Security) |
PROXMOX_TOKEN_SECRET |
xxxxxxxx-... |
API token secret |
PROXMOX_VERIFY_TLS |
false |
set false for a node's self-signed cert |
Proxmox's API is on
:8006with a self-signed certificate by default, soPROXMOX_VERIFY_TLS=falseis typical on a LAN. For stricter TLS, front the API with a reverse proxy holding a trusted cert and pointPROXMOX_BASE_URLthere.A variable set explicitly in the client's
envblock still overrides.env.
Register with Claude Code (CLI)
With config in .env, registration just points at the server — no -e flags.
Use absolute paths to the venv's Python and server.py.
Linux / macOS
claude mcp add proxmox -s user -- \
/path/to/proxmox-mcp/.venv/bin/python \
/path/to/proxmox-mcp/server.py
Windows (PowerShell)
claude mcp add proxmox -s user `
-- C:\path\to\proxmox-mcp\.venv\Scripts\python.exe `
C:\path\to\proxmox-mcp\server.py
-s user makes it available in every project. Verify with claude mcp list.
Tools load in a new Claude Code session.
Register with Claude Desktop
Copy claude_desktop_config.example.json to
%APPDATA%\Claude\claude_desktop_config.json (it only points at server.py;
config comes from .env), then fully restart Claude Desktop. The Proxmox tools
appear under the 🔌 / tools menu.
Security
Use a dedicated, least-privilege token — never root@pam. This server needs
read, power, CPU/memory reconfigure, and snapshot/backup privileges. Create a
scoped token once, on a Proxmox node:
# a role with exactly the privileges this server uses
pveum role add ProxmoxMCP --privs "VM.Audit,VM.PowerMgmt,VM.Config.CPU,VM.Config.Memory,VM.Snapshot,VM.Snapshot.Rollback,VM.Backup,Sys.Audit,Datastore.Audit,Datastore.AllocateSpace"
# a dedicated, non-root user + API token
pveum user add mcp@pve
pveum aclmod / -user mcp@pve -role ProxmoxMCP
pveum user token add mcp@pve proxmox --privsep 0
# -> copy the printed token id (mcp@pve!proxmox) and value into .env
A token scoped this way can power-manage, resize, snapshot, and back up guests
but cannot open a host shell, change node/network/firewall config, or create
users/tokens — so a leaked token can't own the hypervisor. (Datastore.AllocateSpace
is needed only for writing backups; drop it to make the token read-plus-power only.)
- The token secret lives in
.envin plaintext (gitignored) — keep it private..env.example(no secret) is the committed template. - MCP clients prompt before running a tool; that confirmation is the human guardrail on the power-control tools.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.