Skip to main content
Glama
Bldg-7

Proxmox MCP Server

by Bldg-7

Node Configuration

proxmox_node_config
DestructiveIdempotent

Configure Proxmox node settings: retrieve or set time, DNS, and hosts entries for a specified node, enabling efficient server management.

Instructions

Manage node configuration. action=get_time|set_time(elevated)|set_dns(elevated)|get_hosts|set_hosts(elevated)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ipNoIP address
dns1NoPrimary DNS server
dns2NoSecondary DNS server
dns3NoTertiary DNS server
nameNoHostname or alias
nodeYesNode name
timeNoUnix epoch time in seconds
actionYes
deleteNoComma-separated list of settings to delete
digestNoConfiguration digest
searchNoSearch domain
commentNoOptional comment
timezoneNoTimezone (e.g., UTC, America/New_York)

Schema Changelog

Changes observed during successful MCP inspections.

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

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, destructiveHint=true, and idempotentHint=true. The description adds the useful context that set_* actions require elevated privileges, but it does not disclose what the destructive operations change, whether changes are reversible, or what the effects of set_hosts/set_dns are beyond the action names.

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 compact line with the core scope front-loaded and the actions listed in a terse, parseable format. It avoids redundancy, though the packed pipe-separated syntax is somewhat cryptic and could be clearer with brief action explanations.

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

Completeness2/5

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

This is a multi-action tool with 13 parameters, no output schema, and a destructive annotation, so the description carries a heavy burden. It does not map action to required parameters, does not describe return values or expected side effects, and leaves the agent guessing how set_hosts and set_dns use the available fields.

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

Parameters3/5

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

Schema description coverage is 92%, so the input schema already documents most parameters well. The description's action enum mostly duplicates the schema's action enum, but the '(elevated)' label adds a permission nuance not present in the schema. It does not explain which parameters apply to which action, which is a meaningful gap for a 13-parameter tool.

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 the resource (node configuration) and lists the concrete actions: get_time, set_time, set_dns, get_hosts, set_hosts. This is specific enough to distinguish from guest or cluster tools, though the opening phrase 'Manage node configuration' is generic and each action is not individually explained.

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 action list implies when the tool is relevant — for node time, DNS, and hosts configuration — and the '(elevated)' markers hint at privilege requirements. However, it provides no explicit guidance about when to use this tool vs alternatives like proxmox_node_info or proxmox_node, nor does it exclude any situations.

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