get_task
Retrieve a specific task by its ID and project ID using the TickTick MCP Server, enabling precise task management and integration with AI assistants.
Instructions
Get a specific task by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | Project ID containing the task (required) | |
taskId | Yes | Task ID to retrieve (required) |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "Project ID containing the task (required)",
"type": "string"
},
"taskId": {
"description": "Task ID to retrieve (required)",
"type": "string"
}
},
"required": [
"taskId",
"projectId"
],
"type": "object"
}