Installation überspringen. In unter 2 Minuten einsatzbereit.
Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge Proxmox VE mit einem Klick hinzu und richte deinen KI-Client (Claude, ChatGPT, Copilot oder Cursor) auf den erzeugten MCP-Endpoint. Kein Docker, kein git clone, keinerlei Entwicklungserfahrung nötig.
Summary
Proxmox Virtual Environment: cluster nodes, virtual machines and containers with their status and resource usage, storage, backup tasks and the task log. REST API with an API token, read-only by construction.
Frag einfach
Beispiel-Prompts für Proxmox VE
Klick auf einen Prompt, um ihn zu kopieren. In Claude, ChatGPT, Cursor, Gemini, Copilot oder OpenClaw einfügen — und gegen diesen Connector laufen lassen.
Claude ist KI und kann Fehler machen. Bitte Antworten gegenprüfen.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → Proxmox VE klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
Proxmox VE + Cursor
Proxmox Virtual Environment: cluster nodes, virtual machines and containers with their status and resource usage, storage, backup tasks and the task log. REST API with an API token, read-only by construction.
Voraussetzungen
Die vollständige Setup-Anleitung ist in den Connector eingebaut (im Store sichtbar, wenn du den Connector auswählst). Benötigte Umgebungsvariablen für diesen Connector:
PROXMOX_URL, PROXMOX_TOKEN_ID, PROXMOX_TOKEN_SECRET
Schritt 1 — Zugangsdaten holen
Use an API token, not a password.
- In the Proxmox web UI go to Datacenter → Permissions → API Tokens and add a token for a user — e.g.
readonly@pvewith token idamcp. Proxmox shows the secret once. - Leave Privilege Separation ticked and grant the token the
PVEAuditorrole at path/. PVEAuditor is read-everything, change-nothing, which is exactly what this adapter needs and all it can do. - Set
PROXMOX_URLtohttps://your-host:8006,PROXMOX_TOKEN_IDto the fulluser@realm!tokenidstring, andPROXMOX_TOKEN_SECRETto the secret.
…(continued in the in-app connector instructions)
Schritt 2 — Adapter installieren
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Schritt 3 — Connector in Cursor hinzufügen
Cursor liest MCP-Server aus ~/.cursor/mcp.json. Füge diesen Eintrag hinzu:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Hole deinen MCP API Key aus AnythingMCP → Profil → MCP API Keys → Neuer Key.
- Speichern und Cursor neu starten.
- Cursor → Einstellungen → MCP öffnen und prüfen, ob
Proxmox VEals "Connected" gelistet ist. - Chatten — alle
Proxmox VE-Tools sind aufrufbar.
Verfügbare Tools
| Tool | What it does |
|---|---|
proxmox_get_version | Read the Proxmox VE version and release of the connected node |
proxmox_list_cluster_resources | List every VM, container, node and storage across the whole cluster in one call, with status, CPU, memory and disk usage |
proxmox_list_nodes | List the cluster's nodes with their status, uptime, CPU count and memory |
proxmox_get_node_status | Read one node's live status: load average, CPU and memory usage, root filesystem usage, kernel version and uptime |
proxmox_list_vms | List the QEMU virtual machines on one node, with their VMID, name, status, CPU and memory allocation and current usage |
proxmox_get_vm_status | Read one virtual machine's live status: running or stopped, uptime, CPU and memory usage, disk and network throughput |
proxmox_get_vm_config | Read one virtual machine's configuration: its disks, network interfaces, boot order, CPU type and the notes recorded against it |
proxmox_list_containers | List the LXC containers on one node with their VMID, name, status and resource usage |
proxmox_list_storage | List the storage configured on one node with each store's type, total and used space, and what content it accepts |
proxmox_list_backups | List the backup archives on one storage, with their VMID, creation time, size and format — the answer to 'when was this last backed up' |
proxmox_list_tasks | List recent tasks on one node with their type, VMID, user, start time and exit status — where a failed backup or migration shows up |
FAQ
Unterstützt Cursor benutzerdefinierte MCP-Server im Free-Tier? Ja — MCP ist auf Hobby, Pro und Business verfügbar.
Nächste Schritte
War dieser Guide hilfreich?