MCP
history:redo
Re-applies the most recently undone edit.
Parameters
This tool takes no parameters.
Returns
| Name | Type | Required | Description |
|---|---|---|---|
redone | boolean | yes | true only when something was actually popped AND fully reapplied. false for a genuinely empty redo 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": {
"redone": {
"description": "`true` only when something was actually popped AND fully reapplied. `false` for a genuinely empty redo stack, a normal, non-error outcome, not a refusal.",
"type": "boolean"
}
},
"required": [
"redone"
]
}