Skip to main content
Glama

vm_reboot

Reboot a Windows guest VM in VMware Workstation using soft, hard, or kernel debugger reset, then automatically reattach the debugger and reopen terminal sessions.

Instructions

Reboot the guest (soft, hard or from the debugger) and bring kd and terminals back.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vmYesVM name as registered in vms.yaml
modeNosoft: shutdown /r in the guest; hard: hypervisor reset; kd: .reboot at kd>soft
confirmNoSet true to acknowledge a destructive operation
timeoutNoSeconds to wait for the guest
reattach_kdNoBring the debugger back after boot
reopen_termNoReopen dropped terminal sessions

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does clearly state the main action and that kd and terminals are restored, but it omits the destructive nature of hard reboots and the need to set confirm=true. The schema's confirm parameter hints at destructiveness, but the description itself remains thin on side effects.

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

Conciseness5/5

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

The description is a single, front-loaded sentence with no filler. Every phrase contributes meaning, and it avoids repeating parameter names or schema details, making it an efficient and well-structured definition.

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 moderately complex tool with 6 parameters and no output schema, the description plus the well-detailed input schema is nearly complete. The core behavior is fully described, though explicit usage guidance and a destructive-action warning would make it fully self-sufficient.

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 100%, so the baseline is 3. The description adds value beyond the schema by linking the mode options to soft/hard/kd and by framing reattach_kd and reopen_term as 'bring kd and terminals back,' providing useful semantic context that is not explicit in the parameter names 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 specific verb ('Reboot'), the resource ('guest'), and enumerates the available modes ('soft, hard or from the debugger'). It also adds the distinctive effect of bringing kd and terminals back, which clearly differentiates it from sibling tools like vm_stop, vm_start, and vm_suspend.

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

Usage Guidelines2/5

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

The description gives no explicit guidance on when to use this tool over alternatives such as vm_stop/vm_start or kd_attach. There are no when-to-use or when-not-to-use instructions, nor any named alternatives, leaving the agent to infer usage context from the tool name and sibling list.

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