Skip to main content
Glama
Bldg-7

Proxmox MCP Server

by Bldg-7

Update Guest Configuration

proxmox_guest_config_update
DestructiveIdempotent

Update VM or LXC configuration by setting key-value pairs or deleting specified keys on a given node. Requires elevated permissions for modifying guest settings.

Instructions

Update VM/LXC config key-value pairs (type=vm|lxc) (requires elevated permissions)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nodeYesNode name where VM is located
typeYes
vmidYesVM ID number
configNoKey-value pairs of VM configuration to set. Use proxmox_guest_config with type=vm to discover valid keys.
deleteNoComma-separated list of config keys to REMOVE (e.g. "ciuser,cipassword"). Does NOT delete the VM.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.3.0
  2. Removedv1.2.2
  3. First observedv1.2.1

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true and idempotentHint=true, so the description's job is lighter. The description adds the 'requires elevated permissions' context and the delete parameter explicitly clarifies it removes config keys, not the VM. This adds meaningful behavioral context beyond the annotations.

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?

The description is a single concise sentence that front-loads the action and resource, with the type constraint and permission requirement appended. It earns its place without redundancy, though it could be slightly more structured with explicit when-to-use guidance.

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

Completeness4/5

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

For a mutation tool with no output schema, the description plus annotations cover the key aspects: what it does, that it is destructive, that it is idempotent, and that elevated permissions are needed. The main gap is not explaining the effect of the config object on existing settings (merge vs replace), but the pointer to proxmox_guest_config partially mitigates this.

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

Parameters4/5

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

Schema description coverage is 80%, so the schema already documents most parameters. The description adds value by clarifying the delete parameter's semantics ('Does NOT delete the VM') and by pointing to proxmox_guest_config for valid keys. The config parameter's free-form object nature is partially compensated by that pointer.

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

Purpose4/5

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

The description states a specific verb ('Update') and resource ('VM/LXC config key-value pairs'), and distinguishes the target type (vm|lxc). It is clear enough to separate from sibling tools like proxmox_guest_config (read) and proxmox_guest_delete (delete VM), though it does not explicitly name those alternatives.

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?

The description implies usage context: it is for updating config key-value pairs on a VM or LXC, and the config parameter description points to proxmox_guest_config for discovering valid keys. However, it does not explicitly state when to use this tool versus alternatives like proxmox_guest_pending or proxmox_guest_config, nor does it mention prerequisites beyond elevated permissions.

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

Deploy Server

Other Tools