delete_todo
Remove a specific task from your Todo List MCP Server by providing its unique UUID, ensuring efficient task management and organization.
Instructions
Delete a todo item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | UUID of the todo to delete |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "UUID of the todo to delete",
"format": "uuid",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}