Create, manage, and optimize virtual machines in Proxmox. Control VM lifecycle, monitor performance, adjust resources, and plan VM deployment strategies.
Create, manage, and optimize virtual machines in your Proxmox environment.
This skill enables you to:
Use this skill when you need to:
get_vms - List all VMs on a specific nodeget_vm_status - Get detailed VM status and configurationget_vm_config - Get full VM configuration detailsstart_vm - Start a virtual machinestop_vm - Stop a VM immediatelyshutdown_vm - Gracefully shutdown a VMreboot_vm - Reboot a virtual machinesuspend_vm - Suspend (pause) a running VMresume_vm - Resume a suspended VMcreate_vm - Create a new virtual machine with basic configurationcreate_vm_advanced - Create a VM with advanced configuration optionsclone_vm - Clone an existing virtual machineupdate_vm_config - Update VM configuration (resources, options, mark as template)delete_vm - Delete a virtual machineCreating template VMs allows you to quickly deploy preconfigured virtual machines:
Create or prepare a base VM
create_vm_advanced or clone from an existing VMUpdate VM as Template
update_vm_config with template: 1 to mark as template{
"template": 1
}
Clone from Template
clone_vm to create instances from the template# First, prepare your VM (install OS, apps, configure)
# Then mark it as a template:
update_vm_config(node="pve2", vmid=100, config={"template": 1})
# Clone the template to create a new VM
clone_vm(node="pve2", source_vmid=100, new_vmid=200, new_name="web-server-01", full=true)
get_vms to list available VMsget_vm_status or get_vm_config to check VM statecreate_vm or create_vm_advanced to provision new VMget_vm_status to verify configurationclone_vm to create copies for testing or deploymentget_vm_config to review detailed settingssuspend_vm to pause a running VM (preserves state)resume_vm to resume operations from suspended stateshutdown_vm for graceful shutdownreboot_vm to restart VMstop_vm for immediate termination if neededget_vm_status to check VM healthWhen using this skill, I provide: