MCP
history:undo
Undoes the workbook's most recent edit.
Parameters
This tool takes no parameters.
Returns
| Name | Type | Required | Description |
|---|---|---|---|
undone | boolean | yes | true only when something was actually popped AND fully reverted. false for a genuinely empty undo stack, a normal, non-error outcome, not a refusal. |
Schema
Request payload, as JSON Schema:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Payload",
"description": "Deliberately empty.",
"type": "object"
}Response payload, as JSON Schema:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Output",
"type": "object",
"properties": {
"undone": {
"description": "`true` only when something was actually popped AND fully reverted. `false` for a genuinely empty undo stack, a normal, non-error outcome, not a refusal.",
"type": "boolean"
}
},
"required": [
"undone"
]
}