create_task
Use this tool to add a new task in TickTick by specifying details like title, content, project ID, due date, priority, and tags for efficient task management.
Instructions
Create a new task in TickTick
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | Task description/content | |
dueDate | No | Due date in ISO format | |
priority | No | Task priority (0=None, 1=Low, 3=Medium, 5=High) | |
projectId | No | Project ID where the task should be created | |
tags | No | Task tags | |
title | Yes | Task title (required) |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Task description/content",
"type": "string"
},
"dueDate": {
"description": "Due date in ISO format",
"type": "string"
},
"priority": {
"description": "Task priority (0=None, 1=Low, 3=Medium, 5=High)",
"type": "number"
},
"projectId": {
"description": "Project ID where the task should be created",
"type": "string"
},
"tags": {
"description": "Task tags",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Task title (required)",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}