proxmox-mcp
Enables an AI assistant to fully navigate a single-node Proxmox VE host over SSH, with modes for read-only inspection, safe operations, and full control including provisioning and destruction.
README
proxmox-mcp
An MCP server that lets an AI assistant fully navigate a single-node Proxmox VE host — inspect, control, provision, and destroy — without exposing any new network service.
The server runs on the Proxmox node itself, launched over SSH and speaking stdio. Nothing listens. There is no port, no API token, no TLS, and no daemon. The node's existing sshd is the only entry point, and your existing SSH key is the only credential.
Claude Code (your PC) ──ssh──► proxmox-mcp (on the node) ──► pvesh / qm / pct
Install on the node
From the Proxmox host, as root:
apt-get install -y git # not present on a stock PVE install
git clone https://github.com/ssan9876/proxmox-mcp /opt/proxmox-mcp-src
/opt/proxmox-mcp-src/install.sh
The installer creates a venv at /opt/proxmox-mcp, installs the package, drops
a launcher at /opt/proxmox-mcp/bin/proxmox-mcp, and writes a starter config to
/etc/proxmox-mcp/config.yaml if none exists.
Verify it:
/opt/proxmox-mcp/bin/proxmox-mcp --dry-run --log-level DEBUG
It should log a startup line and then wait on stdin. Ctrl-C to exit.
Connect from your PC
You need password-less SSH to the node first:
ssh-copy-id root@pve
Then add the server to your MCP client. For Claude Code:
claude mcp add proxmox -- ssh -o BatchMode=yes root@pve /opt/proxmox-mcp/bin/proxmox-mcp --mode safe
Or by hand, in your MCP config:
{
"mcpServers": {
"proxmox": {
"command": "ssh",
"args": [
"-o", "BatchMode=yes",
"root@pve",
"/opt/proxmox-mcp/bin/proxmox-mcp", "--mode", "safe"
]
}
}
}
Replace pve with your node's hostname or IP.
Modes
The mode decides which tools are registered. Tools outside the active mode are never exposed — the model cannot see them or call them.
| Mode | What it can do |
|---|---|
readonly |
Inspect everything. Zero mutation. |
safe |
+ start/stop/reboot, create VMs and containers, snapshot, back up. |
full |
+ destroy, restore, roll back, shrink disks, run commands in guests, root shell on the host. |
safe is the default. Change it per-connection with --mode in the SSH args,
so the power a session has is visible in your client config. Keeping a second
entry named proxmox-full and only enabling it when you need it is a reasonable
setup.
Guardrails
Four checks sit in front of anything that can lose data:
- Protected denylist — VMIDs, names, and pools listed in the config are
refused by every destructive tool, including in
fullmode. Disruptive lifecycle actions (stop, reboot, shutdown) honour it too, and a disk whose volume ID belongs to a protected VMID is protected with it. - Mode gate — the tool must be registered by the active mode.
- Confirm token — destructive tools require a
confirmargument holding the target's exact token:vm:104,ct:110/snap:nightly,volume:local-lvm:vm-104-disk-0,node:pve,api:DELETE:/nodes/pve/.... A mismatch returns the target's real details — name, status, disks, uptime — so what was about to be destroyed is visible in the transcript before any retry. - Protective snapshot or backup —
rollback_snapshotandshrink_disksnapshot first.destroy_guestandrestore_backupcannot be protected by a snapshot, so they runvzdumpfirst and abort if the backup fails.
node_shell is deliberately not gated on every call — requiring a constant
token to run ls would just train the model to paste it. Instead it demands the
node token only when the command matches a destructive pattern (rm -rf,
mkfs, dd, zfs destroy, lvremove, reboot, apt purge, and similar).
What the confirm token is and is not
The mismatch error includes the expected token, so a model can read it and retry. That is deliberate: a token the caller cannot learn makes the tool unusable. What it buys is a blocked first attempt on a hallucinated or stale VMID, a forced second round-trip, and the target's details in front of you. It is not an authorization boundary. The denylist and the mode gate are.
Configuration
/etc/proxmox-mcp/config.yaml:
mode: safe # readonly | safe | full
node: null # auto-detected when null
auto_snapshot: true # protective snapshots before lossy operations
task_poll_seconds: 10 # how long tools wait on a task before returning a UPID
command_timeout: 60
shell_timeout: 600 # ceiling for node_shell
max_output_bytes: 100000
protected:
vmids: [100]
names: ["opnsense", "truenas"]
pools: ["production"]
CLI flags --mode, --config, --node, and --dry-run override the file.
Tools
Inspect (all modes) — resource_summary, node_status, list_guests,
guest_config, guest_status, list_storage, storage_content,
list_networks, list_tasks, task_log, list_snapshots, list_backups,
node_services, read_syslog, list_access, node_updates
Lifecycle (safe+) — start_guest, shutdown_guest, stop_guest,
reboot_guest, suspend_guest, resume_guest, wait_for_task
Provision (safe+) — create_vm, create_container, set_guest_config,
grow_disk, clone_guest, create_snapshot, create_backup,
convert_to_template, download_to_storage
Destructive (full) — destroy_guest, delete_snapshot, delete_volume,
rollback_snapshot, restore_backup, shrink_disk, guest_exec,
node_shell, node_reboot
Passthrough — pve_get and pve_discover in all modes; pve_post,
pve_put, pve_delete in full. These reach every endpoint the Proxmox web UI
uses, so anything the curated tools miss is still reachable.
resource_summary is the intended starting point: node health, every guest, and
every storage in one call.
Development
git clone https://github.com/ssan9876/proxmox-mcp && cd proxmox-mcp
uv venv && uv pip install -e ".[dev]"
uv run pytest
Tests inject a fake command runner, so the whole suite runs on any machine with
no Proxmox host involved. Tools are verified by asserting the exact pvesh
argv they build and feeding recorded JSON back.
Notes
- Transport is stdio: stdout belongs to the MCP protocol. All logging goes
to stderr. A stray
print()corrupts the session. - The server holds root on your hypervisor. In
fullmode it can delete VMs and run arbitrary commands. Run it insafeunless you are actively doing something that needs more. - Tool results are capped at
max_output_bytesso an unboundedjournalctlornode_shellcannot exhaust the context window.
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.
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.
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.
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.
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.
E2B
Using MCP to run code via e2b.