Skip to main content
Glama
piyushladhar

iotamine-mcp

by piyushladhar

install_os_on_volume

Destructive

Irreversibly install a fresh OS onto a standalone volume. Detach the volume, confirm, provide root password or SSH key, then monitor task status.

Instructions

Install a fresh OS onto this standalone volume, overwriting whatever's on it entirely. Irreversible — requires confirm=true. The volume must be detached from any VPS first (detach_volume). A Windows OS requires root_password; anything else needs at least one of ssh_public_key/root_password. Asynchronous — poll get_volume_task_status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmNo
volume_idYes
root_passwordNo
ssh_public_keyNo
operating_systemYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the destructiveHint annotation, the description discloses irreversibility ('overwriting whatever's on it entirely. Irreversible — requires confirm=true'), the asynchronous nature ('Asynchronous — poll get_volume_task_status'), and the prerequisite of detaching the volume. These are not conveyed by annotations alone and provide crucial safety information.

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 compact set of five sentences, each adding distinct value: purpose, destructiveness, prerequisite, credential conditions, and async behavior. It is front-loaded with the core function and no filler.

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

Completeness5/5

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

For a tool with 5 parameters, no output schema, and no enums, the description covers the essential aspects: what it does, side effects, required preconditions, parameter conditions, and follow-up polling. An agent has enough information to call it safely and correctly.

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?

With 0% schema description coverage, the description compensates by explaining the conditional semantics of root_password and ssh_public_key (Windows vs. non-Windows), and confirm's role in the irreversible action. It does not explain the operating_system parameter, but that's covered by sibling tools like list_available_os_for_volume. Overall, it adds meaningful value beyond the bare names.

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 the specific verb and resource: 'Install a fresh OS onto this standalone volume,' and clarifies the overwriting behavior. It differentiates from sibling tools like reinstall_vps (for VPS) and list_available_os_for_volume (listing) by explicitly targeting standalone volumes.

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 provides clear prerequisites: the volume must be detached (detach_volume), and OS-specific credential requirements. It does not explicitly name alternative tools or say 'use this instead of X', but the context makes the intended use clear. Minor gap: no explicit when-not-to-use guidance, but overall it gives solid direction.

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