toggle_todo
Change the completion status of a specific todo item by its ID in the MCP Todo server's persistent task list.
Instructions
Toggle a todo by id
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"id"
],
"type": "object"
}