todoist_get_task
Retrieve a specific Todoist task by its ID to manage or update task details efficiently using the Enhanced Todoist MCP Server Extended.
Instructions
Get a specific task by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | The ID of the task to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "The ID of the task to retrieve",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}