Skip to main content
Glama

unmount_iso

Unmount an ISO image from a server. Initiates an asynchronous operation and returns a callback key to track task completion.

Instructions

Размонтировать ISO-образ с сервера (iso/unmount_iso). Асинхронная операция — вернётся callback-ключ для check_task.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID сервера
confirmYesMust be true to run the operation.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A4/5.0
Behavior4/5

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

Beyond annotations (readOnlyHint=false, destructiveHint=false), the description discloses that the operation is asynchronous and returns a callback key for check_task. This is valuable behavioral context not covered by annotations. However, it doesn't elaborate on side effects (e.g., whether unmounting affects the server state) or error conditions, so it's good but not exhaustive.

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 consists of two concise sentences with no filler. The main action is stated first, followed by the asynchronous behavior. Every word adds value, making it appropriately sized and front-loaded.

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?

Given the simple parameter set, full schema coverage, and absence of an output schema, the description covers the essential points: what it does and that it's async with a callback key. It could optionally mention prerequisites (e.g., ISO must be mounted), but that's fairly obvious. Overall, it's sufficient for an agent to call correctly.

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 coverage is 100%, so both parameters (id and confirm) are already fully described in the schema. The description adds no extra meaning about how the parameters are used or formatted. With high schema coverage, the baseline is 3, and nothing more is contributed.

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 clearly states the verb ('Unmount') and resource ('ISO image from server'), and it distinguishes this tool from its siblings like 'mount_iso' and 'upload_iso'. It also includes the API route 'iso/unmount_iso', removing any ambiguity about the intended operation.

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 gives no explicit guidance on when to use this tool versus alternatives (e.g., mount_iso, delete_iso_image). It only states what it does, leaving the agent to infer that it's for detaching an ISO. There are no prerequisites or exclusions mentioned, so it's adequate but not thorough.

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