proxmox-mcp-server
Provides tools to manage Proxmox VE environments: list nodes, manage VMs and containers, clone VMs from templates with Cloud-Init, and create LXC containers.
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-mcp-serverlist all VMs on node pve1"
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 Server
A simple Model Context Protocol (MCP) server for managing Proxmox VE environments via the Proxmox API.
Features
Connects to any Proxmox host dynamically via environment variable
Disables SSL verification warnings for self-signed certificates (ideal for home labs)
Provides tools to:
List physical nodes
List virtual machines (QEMU) and containers (LXC)
Manage guest power states (start, stop, shutdown, status)
Clone VMs from templates with full Cloud-Init injection (IP, User, Password, SSH keys)
Related MCP server: Proxmox MCP Server
Setup & Authentication
The server requires a Proxmox API Token.
Create a token in the Proxmox GUI (Datacenter > Permissions > API Tokens) for a user with appropriate permissions (e.g., root@pam).
Set the following environment variables before running:
PROXMOX_HOST: The IP address or hostname of your Proxmox server (e.g.,192.168.1.100)PROXMOX_TOKEN_ID: The full token ID (e.g.,root@pam!mytoken)PROXMOX_TOKEN_SECRET: The UUID secret of the token
Usage (via uvx)
You can run this server dynamically using uvx without installing it permanently:
PROXMOX_HOST="192.168.1.100" \
PROXMOX_TOKEN_ID="root@pam!mytoken" \
PROXMOX_TOKEN_SECRET="your-uuid-secret" \
uvx --from git+https://github.com/edasan0568/proxmox-mcp-server proxmox-mcp-serverMCP Configuration Example (MCPHub)
{
"mcpServers": {
"proxmox": {
"command": "/root/.local/bin/uvx",
"args": [
"--from",
"git+https://github.com/edasan0568/proxmox-mcp-server",
"proxmox-mcp-server"
],
"env": {
"PROXMOX_HOST": "192.168.1.100",
"PROXMOX_TOKEN_ID": "root@pam!mytoken",
"PROXMOX_TOKEN_SECRET": "your-uuid-secret"
}
}
}
}Tools Available
list_nodes: List all physical nodes in the cluster.list_guests: List all VMs and Containers on a specific node.manage_guest: Start, stop, shutdown, or check status of a specific VM/CT.clone_vm: Clone a QEMU VM from a template and apply Cloud-Init configurations.create_lxc: Create an LXC Container directly from an OS template tarball and apply configurations.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/edasan0568/proxmox-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server