Skip to main content
Glama

qemu_vm_force_stop

Destructive

Force stop a managed QEMU VM instantly when graceful shutdown fails or is unavailable.

Instructions

Immediately stop a managed QEMU VM when graceful shutdown is not possible.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vm_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.6.0

TDQS

A3.9/5.0
Behavior3/5

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

The destructiveHint annotation already marks this as destructive, and the description adds an 'immediately' behavioral aspect. However, it does not disclose important consequences such as potential data loss or bypassed guest cleanup, which would add meaningful context beyond the annotation.

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 concise sentence that front-loads the action and the condition. There is no redundant content or repetition of schema information.

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 one-parameter destructive tool with annotations covering the safety profile, the description provides enough context: what happens, when to use it, and what resource is affected. A short warning about data-loss risk would improve it, but nothing essential for invoking the tool is missing.

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?

The schema has 0% description coverage for vm_id, and the tool description does not mention or explain the parameter. The parameter name is fairly self-explanatory, so the gap is not severe, but the description contributes no semantic value beyond the schema.

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 action and resource: 'Immediately stop a managed QEMU VM.' The qualifier 'when graceful shutdown is not possible' clearly distinguishes it from related tools like qemu_vm_shutdown. This goes beyond a simple restatement of the tool name.

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

Usage Guidelines4/5

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

The description gives an explicit condition for use: when graceful shutdown is not possible. This implies the graceful alternative should be considered first, though it does not explicitly name qemu_vm_shutdown as the preferred fallback.

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