ticktick_delete_task_note
Delete a specific note associated with a task in TickTick using the task ID and note ID. Integrates with the TickTick MCP Server for streamlined task management.
Instructions
Remove task note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note_id | Yes | ID of the note to delete | |
task_id | Yes | ID of the task |
Input Schema (JSON Schema)
{
"properties": {
"note_id": {
"description": "ID of the note to delete",
"type": "string"
},
"task_id": {
"description": "ID of the task",
"type": "string"
}
},
"required": [
"task_id",
"note_id"
],
"type": "object"
}