delete_todo
Remove a specific todo item by its ID from a markdown-based todo list using the Todo Markdown MCP Server.
Instructions
Delete a todo item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The todo item ID to delete |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"id": {
"description": "The todo item ID to delete",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}