Skip to main content
Glama

mount_iso

Mount an ISO image to a specified server using its image ID or name. This asynchronous operation returns a callback key for task status via check_task.

Instructions

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID сервера
nameNoИмя образа (если используется идентификация по имени)
iso_idNoID образа из list_iso_images
confirmYesНужно true, чтобы выполнить операцию.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations establish readOnlyHint=false and destructiveHint=false, so the description doesn't need to re-state mutability. The description adds useful context beyond annotations: it's an asynchronous operation that returns a callback key, and confirm must be true. No contradiction with annotations.

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?

Two sentences, front-loaded with the core action, then the async/callback caveat, then sourcing guidance. No filler; every clause earns its place.

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 4-parameter mutation with no output schema, the description covers the critical call pattern: async behavior, callback key for check_task, and where to get the image ID. It doesn't cover prerequisites such as server power state, but the required info for a correct invocation is present.

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 already describes all four parameters (coverage 100%), so the baseline is 3. The description adds value by telling the agent where to obtain the image identifier (list_iso_images or get_uploaded_isos) and reinforces the confirm requirement, pushing it above baseline.

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 opens with a specific verb+resource ('Mount ISO image to server') and even notes the endpoint key. This clearly distinguishes it from siblings like unmount_iso, upload_iso, and delete_iso_image.

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?

It gives clear operational context: the operation is asynchronous and returns a callback key for check_task, and directs the agent to source the image identifier from list_iso_images or get_uploaded_isos. However, it doesn't explicitly state when to prefer this over alternatives or any exclusions, so it stops short of full routing guidance.

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