Skip to main content
Glama

hydra_drop

Destructive

Removes a Hydra block from the composition, blanks its outputs if no other block draws there, and restores alternative blocks that share those outputs to prevent frozen frames.

Instructions

Remove one block from the composition and blank the outputs it drew into (unless another block still draws there) — Hydra keeps showing whatever an output was last given, so forgetting the code alone would leave its picture frozen on screen.

Returns blanked (outputs that went black) and restored (blocks run again because they also draw into one of the same outputs — otherwise the dropped chain, having run last, would stay on screen there). Human-written blocks need take=true. The code is gone afterwards; hydra_save first if you might want it back.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
takeNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the annotations' destructiveHint=true and readOnlyHint=false, the description explains a subtle Hydra behavior—outputs keep showing their last frame—and why blanking is necessary. It also discloses that the code is gone afterwards and describes the returned blanked and restored semantics. This is substantial behavioral context the structured annotations alone would not convey.

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 dense but every sentence earns its place: it states the core action, explains the persistence rationale, defines the return values, and warns about destructiveness. The structure front-loads the main purpose and uses a dash to add essential context without padding.

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 destructive, non-read-only tool with only two parameters and an output schema, the description is fully adequate. It covers why blanking happens, what restored means, the take flag requirement, and the irreversible code loss. An agent has enough information to invoke it correctly and handle side effects.

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 schema description coverage at 0%, the description takes on the burden of explaining parameters. It clearly defines take: 'Human-written blocks need take=true.' The name parameter is not explicitly described but is self-evident from context as the block to remove, so the gap is minor.

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 and resource: 'Remove one block from the composition,' then clarifies the consequential behavior of blanking outputs. This cleanly distinguishes the action from sibling tools like hydra_save or hydra_hush by stating exactly what gets removed and what happens to the screen.

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 guidance: human-written blocks need take=true, and hydra_save should be called first if the code might be needed again. It does not explicitly enumerate when-not-to-use alternatives, but the save-first warning and the destruction warning provide enough contextual guardrails for an agent to decide safely.

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