Skip to main content
Glama

Dry run

estimate_deployment
Read-only

Predicts instance deployment costs and teardown deadline before creating it, returning next steps and worst-case bill with zero spend.

Instructions

Exactly what create_instance would do with these arguments, including the teardown deadline and the worst-case bill. Spends nothing. Returns JSON: {ok, message, next_tool, next_args, ...tool-specific fields}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
offer_idNoOmit to let the planner pick
templateYes
idle_minutesNo
work_minutesNo
teardown_minutesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYesfalse only when the tool itself failed (bad input, missing key, API error).
messageYesHuman-readable summary to relay to the user.
next_argsNoSuggested arguments for next_tool.
next_toolNoSuggested next tool, or null when nothing else is needed.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior5/5

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

Beyond the readOnlyHint and destructiveHint annotations, the description explicitly states 'Spends nothing,' explains that it exactly mirrors create_instance, and describes the JSON return shape including next_tool and next_args. This gives the agent a concrete model of the tool's side-effect-free behavior.

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 two sentences with no filler. It front-loads the core behavior, then gives the key cost safety detail, then summarizes the return contract.

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?

The description covers the essential behavior, return shape, and safety profile, especially with strong annotations and an output schema present. The remaining gap is parameter semantics, but the analogy to create_instance plus the existing schema makes the tool reasonably actionable.

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?

Schema description coverage is only 20%, and the description does not compensate by explaining template, idle_minutes, work_minutes, or teardown_minutes. It only says 'with these arguments,' which links parameters to create_instance but leaves their individual meaning and requirements under-specified.

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 tool as a dry-run that replicates create_instance behavior, including teardown deadline and worst-case bill. It distinguishes itself from create_instance by stressing that it spends nothing, so an agent immediately knows what this tool is for.

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 references create_instance as the real operation being previewed and emphasizes 'Spends nothing,' which clearly implies using this before committing to create_instance. It does not explicitly list when not to use it or alternative conditions, but the context is clear enough.

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