Skip to main content
Glama

blender_undo

Revert the most recent Blender change by popping its undo stack, making the last step reversible. Avoid rewinding across open files to prevent crashes.

Instructions

Undo the last change pushed onto Blender's undo stack.

Pair it with blender_checkpoint to make a step reversible. Refuses to rewind across an Open File, because Blender's undo stack does not survive one and attempting it crashes Blender rather than raising.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
response_formatNo'markdown' for readable output, 'json' for raw structured data.markdown

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations are all false and provide no safety context, so the description carries the burden. It adds meaningful behavioral detail: the undo stack semantics, the refusal to rewind across an Open File, and the critical warning that attempting this crashes Blender rather than raising an error. This is valuable beyond the structured 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?

The description is compact and front-loaded with the core action. The second sentence adds practical pairing guidance, and the third explains a critical edge case. Every sentence earns its place with no redundancy or filler.

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 core operation, the companion tool, and the dangerous edge case involving Open File. There is no output schema, but the description does not need to explain return values for an undo operation. It could mention behavior when the undo stack is empty, but that is a minor omission given the strong context provided.

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

Parameters3/5

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

The only parameter, response_format, is fully documented in the schema with an enum and description, so schema coverage is 100%. The description adds no additional parameter guidance, which is acceptable because the schema already fully explains the parameter.

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 states the action ('Undo the last change pushed onto Blender's undo stack') with a specific verb and resource. It distinguishes itself from related tools by referencing blender_checkpoint and explaining its relationship to the undo stack, making its role unambiguous.

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 explicitly instructs pairing with blender_checkpoint to make a step reversible, which is a clear usage pattern. It also warns against use across an Open File, providing a concrete limitation. It does not explicitly contrast with blender_redo, but the name and description make the distinction obvious.

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