Manage Proxmox VE through AI assistants
Manage Proxmox VE through AI assistants. The proxmox ve mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.
MCP server for Proxmox VE. Manage virtual machines, containers, storage, networking, and clusters through natural language in Cursor, Claude Code, and Claude Desktop.
The server ships on npm as @samik081/mcp-pve, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
Everything the assistant can do here goes through one of these:
pve_list_nodes — List all nodes in the clusterpve_get_node_status — Get detailed node status (CPU, memory, uptime, load)pve_get_node_version — Get PVE version info for a nodepve_get_node_dns — Get DNS settings for a nodepve_get_node_time — Get time and timezone info for a nodepve_get_node_syslog — Get system log entries from a nodepve_list_node_services — List all system services on a nodepve_manage_node_service — Start, stop, restart, or reload a node servicepve_list_qemu_vms — List all QEMU VMs on a nodepve_get_qemu_status — Get current VM status (CPU, memory, disk, network)pve_get_qemu_config — Get VM configurationpve_get_qemu_rrddata — Get RRD statistics over a time periodYou will need 4 environment variables: PVE_BASE_URL, PVE_TOKEN_ID, PVE_TOKEN_SECRET, PVE_VERIFY_SSL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Among the knowledge and memory options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Proxmox VE's toolset — pve_list_nodes, pve_get_node_status, pve_get_node_version and 11 more — is a fair guide to whether it matches your workflow. It is maintained by Samik081; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Proxmox VE's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| pve_list_nodes | List all nodes in the cluster |
| pve_get_node_status | Get detailed node status (CPU, memory, uptime, load) |
| pve_get_node_version | Get PVE version info for a node |
| pve_get_node_dns | Get DNS settings for a node |
| pve_get_node_time | Get time and timezone info for a node |
| pve_get_node_syslog | Get system log entries from a node |
| pve_list_node_services | List all system services on a node |
| pve_manage_node_service | Start, stop, restart, or reload a node service |
| pve_list_qemu_vms | List all QEMU VMs on a node |
| pve_get_qemu_status | Get current VM status (CPU, memory, disk, network) |
| pve_get_qemu_config | Get VM configuration |
| pve_get_qemu_rrddata | Get RRD statistics over a time period |
| pve_list_qemu_snapshots | List all VM snapshots |
| pve_start_qemu_vm | Start a VM |
**Docker (stdio):**
```json
{
"mcpServers": {
"pve": {
"command": "docker",
"args": ["run", "--rm", "-i",
"-e", "PVE_BASE_URL=https://pve.example.com:8006",
"-e", "PVE_TOKEN_ID=root@pam!mcp",
"-e", "PVE_TOKEN_SECRET=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"-e", "PVE_VERIFY_SSL=false",
"ghcr.io/samik081/mcp-pve"
]
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| PVE_BASE_URL | Endpoint or connection string the server talks to. | Yes |
| PVE_TOKEN_ID | Credential the server authenticates with. | Yes |
| PVE_TOKEN_SECRET | Credential the server authenticates with. | Yes |
| PVE_VERIFY_SSL | Configuration value read at startup. | Optional |
A knowledge graph your assistant keeps between sessions — entities, relations and observations that persist.
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Your workspace, on speaking terms with AI — search, read and write Notion pages and databases.
A structured scratchpad for hard problems — stepwise reasoning with revisions, branches and visible logic.
Symbol-level code navigation, refactoring and memory for coding agents — the IDE brain your assistant has been missing.
Chat with your second brain — search, read and write vault notes through the Local REST API.