delete_task
Remove a task from AI Note MCP Server by specifying its ID, performing a soft delete to maintain data integrity while managing task lists.
Instructions
Delete a task (soft delete)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Task ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Task ID to delete",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}