Skip to main content
Glama
plgonzalezrx8

proxmox-mcp

pve_shutdown_vm

Shut down a Proxmox VM or container gracefully by specifying node and VMID, with confirmation required to prevent accidental shutdowns.

Instructions

Gracefully shut down a VM/container. Requires confirm=true.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nodeYes
vmidYes
confirmNo
timeoutNo
vm_typeNoqemu
force_stopNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

There are no annotations, so the description must carry the load. It says 'gracefully' and mandates confirm, but does not disclose timeout behavior, force_stop semantics, or potential side effects of a shutdown. This is minimal for a state-changing operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with no filler; the core action is front-loaded and every word contributes meaning. The terseness is almost too sparing, but as a concise summary it works.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 6-parameter mutation tool with zero schema descriptions and no annotations, this description is severely incomplete. It does not explain vm_type choices, force_stop/timeout roles, or the safety significance of confirm beyond a passing mention. The existence of an output schema slightly reduces return-value burden, but operational guidance is still far too thin.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description only addresses confirm. It leaves node, vmid, timeout, vm_type, and force_stop unexplained, forcing an agent to guess their meanings from schema structure alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear action ('gracefully shut down') and resource ('VM/container'), which distinguishes it from pve_stop_vm (force stop) and pve_reboot_vm. The word 'gracefully' signals the operational intent unambiguously.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides one explicit requirement ('Requires confirm=true'), but does not name alternatives or describe when to choose graceful shutdown over stop/reboot. The usage context is implied rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.