Skip to main content
Glama
piyushladhar

iotamine-mcp

by piyushladhar

get_vps

Read-onlyIdempotent

Retrieve complete details for a single VPS instance by providing its unique ID. Returns full configuration, status, and metadata.

Instructions

Get full detail for one VPS instance by its id (a UUID, as returned by list_vps's own "id" field).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vps_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.4/5.0
Behavior3/5

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

Annotations already declare the operation read-only and idempotent, so safety is covered. The description adds that the response contains 'full detail' and clarifies the id format, but it does not disclose error behavior or response structure. This is acceptable given the annotations, but no additional behavioral context is provided.

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?

A single sentence that is front-loaded with the operation and resource, then supplies the essential parameter guidance. No filler, no redundancy, and every word earns its place.

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 simple read-only get-by-id tool with one parameter and strong annotations, this description is complete. It identifies the input, its source, and the output nature ('full detail'). No critical information is missing for an agent to select and invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so the description must fully explain the parameter. It does: vps_id is a UUID and comes from list_vps's id field. This goes well beyond the schema's bare string type and gives the agent everything needed to supply a valid value.

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 identifies the operation (get full detail), the resource (one VPS instance), and the key discriminator (by id, as opposed to listing). It also points the agent to list_vps for obtaining that id, making the tool's role unambiguous among many VPS-related siblings.

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 implies when to use this tool: when you need full detail for a specific VPS and already know its id. It also tells the agent where the id comes from (list_vps's id field). It does not explicitly list alternatives or exclusions, but the context is clear.

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