remove_checklist_item
Remove a specific item from a checklist by its index to streamline task management and maintain organized progress tracking on the Divide and Conquer MCP Server.
Instructions
Removes a checklist item.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index | Yes | The index of the checklist item to remove (0-based) |
Input Schema (JSON Schema)
{
"properties": {
"index": {
"description": "The index of the checklist item to remove (0-based)",
"type": "number"
}
},
"required": [
"index"
],
"type": "object"
}