21 lines
445 B
JSON
21 lines
445 B
JSON
{
|
|
"name": "ticktick_complete_task",
|
|
"description": "Mark a TickTick task as completed.",
|
|
"inputSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"task_id": {
|
|
"type": "string",
|
|
"description": "The task ID to complete"
|
|
},
|
|
"project_id": {
|
|
"type": "string",
|
|
"description": "The project ID the task belongs to"
|
|
}
|
|
},
|
|
"required": [
|
|
"task_id",
|
|
"project_id"
|
|
]
|
|
}
|
|
} |