mark_task_undone
Reverts a completed checklist item to incomplete by specifying its index, enabling task updates and adjustments within structured workflows on the Divide and Conquer MCP Server.
Instructions
Marks a checklist item as not done.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index | Yes | The index of the checklist item to mark as not done (0-based) |
Input Schema (JSON Schema)
{
"properties": {
"index": {
"description": "The index of the checklist item to mark as not done (0-based)",
"type": "number"
}
},
"required": [
"index"
],
"type": "object"
}