proxmox-mcp
Provides read-only visibility into a Proxmox VE cluster, including nodes, guests (LXC and QEMU), storage, snapshots, backups, and Docker workloads running inside guests.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@proxmox-mcpshow me the current status of all nodes and guests"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
proxmox-mcp
A read-only Model Context Protocol server for Proxmox VE. It gives an AI assistant accurate, structured visibility into your cluster and the Docker workloads inside your guests — and it cannot change anything, by construction rather than by convention.
Works with any Proxmox cluster: single-node or multi-node, LXC or QEMU or both, any addressing scheme, any SSH username, any storage backend.
Why read-only is structural here
Several Proxmox MCP servers exist. Most expose stop_guest, delete_guest, or exec_command
alongside their read tools. This one cannot, and the difference is not a promise in a README:
No mutating tool is registered, and no code path for one exists.
Every command is matched against an allowlist before a connection is opened. 18 permitted forms, exact-match on the whole argument vector. Anything else is refused and audited.
There is no generic shell. No tool accepts an arbitrary command string.
docker --formatvalues are pinned literals, because a Go template is an expression language —--format '{{.Config.Env}}'would print your container secrets.Container environment variables are never returned. The
docker inspecttemplate projects only the fields the tools consume, so environment is never serialised on the far side at all.Your credentials never reach the model. A tool call passes at most a profile name. Hosts, users, and key paths are resolved server-side.
Every call is audited, including refusals, with no argument value that could carry a secret.
The allowlist and its 18 refusal classes live in src/proxmoxmcp/transport/allowlist.py
as declarative data, so they can be audited by reading rather than by tracing code. An independent
adversarial pass — roughly 160 hostile inputs over stdio against the installed artifact: command
separators, traversal, flag smuggling, unicode digits, poisoned configuration, concurrency, process
kills — found no escape and no route to a mutating command.
Related MCP server: proxmox-mcp
Requirements
Python 3.11+
SSH access from the machine running the server to each Proxmox node, key-based and non-interactive. The server never manages keys and never prompts.
Install
uv is the supported path. Not yet on PyPI, so install from the repository.
A note on names, since they differ on purpose: the command you run is proxmox-mcp and the
MCP server registers as proxmox-mcp. The Python distribution is proxmoxmcp, because
proxmox-mcp, mcp-proxmox, proxmox-mcp-server and pve-mcp are all already taken on PyPI —
by packages that install a top-level proxmox_mcp and therefore cannot coexist with each other.
You only ever type proxmoxmcp when installing from a local path.
uv tool install git+https://github.com/edymol/proxmox-mcpOr from a local clone:
git clone https://github.com/edymol/proxmox-mcp
cd proxmox-mcp
uv tool install --from . proxmoxmcpPin the interpreter if you want the declared minimum rather than whatever uv picks:
uv tool install --python 3.11 --from . proxmoxmcpFind the installed executable — you need its absolute path to register it:
echo "$(uv tool dir --bin)/proxmox-mcp"To try it without installing, uvx --from . proxmoxmcp runs it from a temporary
environment.
Configure
Create ~/.config/proxmox-mcp/profiles.toml, or set $PROXMOX_MCP_HOME and put
it there. An annotated example ships in the package at resources/profiles.example.toml.
[profiles.homelab]
nodes = ["node-a", "node-b"] # SSH destinations; one entry is fine
ssh_user = "root" # optional, defers to your ssh_config
ssh_config = "~/.ssh/config" # optional, defers to the SSH default
permitted_networks = ["10.0.0.0/24"] # optional, only check_ip_availability needs itNothing is guessed. Absent configuration produces an error naming the missing setting rather than a
default. Verify SSH access first — BatchMode turns an unknown host key into a failure:
ssh -o BatchMode=yes node-a trueRegister with an MCP client
The server speaks Model Context Protocol over stdio. Every MCP client provides its own configuration mechanism. Consult your client's documentation for the configuration file location and format.
Find the installed executable first:
echo "$(uv tool dir --bin)/proxmox-mcp"Then register it by absolute path. The generic MCP stdio block below works with any client that
accepts standard mcpServers configuration:
{
"mcpServers": {
"proxmox-mcp": {
"type": "stdio",
"command": "/absolute/path/to/proxmox-mcp",
"args": [],
"env": {}
}
}
}For TOML-based configuration:
[mcp_servers.proxmox-mcp]
command = "/absolute/path/to/proxmox-mcp"
args = []Two operationally important notes:
Configuration is read at process start. If you edit your client's configuration file, restart the client process. A refresh or reconnect inside a running session is not sufficient.
Some clients require per-tool approval. If your client is configured with a policy of never approving MCP tool calls automatically, you must explicitly approve each tool before it can be called. Without this configuration, every tool call is cancelled and reported as user cancellation, which reads like a server fault and is not one. Consult your client's documentation for the approval mechanism.
The twelve tools
Tool | Returns |
| Every node: online state, cores, memory, root filesystem, uptime, PVE version |
| One node in detail: CPU, memory, swap, per-mount filesystems, headroom |
| Every LXC and VM, running and stopped, with node, resources, pool, tags |
| Cores, memory, disks, network interfaces with bridge and gateway, features |
| Live state, uptime, CPU, memory, disk and network counters, HA state |
| Storage entries with type, content, totals, and a per-node breakdown |
| Snapshots for one guest with parent, description, timestamp, RAM flag |
| Backup volumes with guest, format, size, timestamp, newest age per guest |
| Whether an address is in use, with the evidence for the answer |
| Docker containers in an LXC: image, state, health, ports, compose labels |
| One compose project: services, images, states, networks, mount paths |
| One consolidated read with concrete concerns — start here |
Ask "how is guest 101 doing" and a model should reach for guest_health_summary first.
Two behaviours worth knowing. check_ip_availability reports free only when every check ran
and every check agreed — a partial answer may say in_use but never free, because a wrong free
means a duplicate address on a live network. And list_storage reports available as null where no
source measures it, rather than deriving total - used, which overstates real free space.
Development
uv sync
uv run ruff checkThe test suite is not published here. It is maintained privately: 1225 tests across unit (against a fake transport, no network), integration (recorded cluster fixtures), installed (a UV-installed artifact outside the checkout), and portability layers, plus opt-in read-only live tests.
Stating the obvious consequence rather than glossing it: you cannot verify the claims in the
section above from this repository alone. You can read transport/allowlist.py, which is
declarative data and is the whole enforcement surface, and you can read every tool in tools/ and
confirm none of them performs I/O. Those two readings are what the tests check. If you want the
suite before pointing this at a hypervisor, ask.
Status, and what is not finished
v1 is read-only. Mutating tools (start_guest, create_lxc, and so on) are designed but
deliberately not built: they need dry-run plans, confirmation tokens, and pre-destruction checks
that do not exist yet.
Known limits, recorded rather than hidden:
list_snapshotsandlist_backupspresence paths were developed against synthetic fixtures. The cluster this was built against has no snapshots and no backups, so first contact with real ones deserves a careful look.Discovery contacts each configured node in turn with a 10-second connect timeout, and profiles are capped at 256 nodes. A profile full of unreachable-but-routable hosts is therefore slow; a wall-clock deadline on discovery is the real fix and is not written yet.
Known open items are tracked outside this repository, not because they are hidden but because the ledgers are part of a private build process. The material ones are listed above.
Licence
MIT. See LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceA read-only MCP server that provides visibility into Parallels Remote Application Server infrastructure, policies, and sessions through the RAS REST API. It enables AI assistants to query site settings, published applications, and license status without performing any modifications.Last updated411MIT
- FlicenseBqualityCmaintenanceA Python MCP server for Proxmox VE that lets AI agents read cluster status, power guests on/off, and provision new VMs/containers through natural language, while preventing any destructive actions.Last updated29
- Alicense-qualityDmaintenanceA Model Context Protocol (MCP) server for Proxmox Virtual Environment that enables AI assistants to manage virtual machines, containers, nodes, and resources through natural language interactions.Last updated3MIT
- AlicenseAqualityAmaintenanceAI-powered MCP server for managing Proxmox VE VMs and containers with built-in governance, audit logging, and reversibility.Last updated432MIT
Related MCP Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/edymol/proxmox-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server