ticktick_update_task_note
Update task notes by specifying the task ID, note ID, and new content. Enables precise task management within the TickTick MCP Server.
Instructions
Edit task note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_content | Yes | Updated note content | |
note_id | Yes | ID of the note to update | |
task_id | Yes | ID of the task |
Input Schema (JSON Schema)
{
"properties": {
"new_content": {
"description": "Updated note content",
"type": "string"
},
"note_id": {
"description": "ID of the note to update",
"type": "string"
},
"task_id": {
"description": "ID of the task",
"type": "string"
}
},
"required": [
"task_id",
"note_id",
"new_content"
],
"type": "object"
}