todoist_complete_task
Mark a Todoist task as completed using its unique ID, enabling efficient task management through the Enhanced Todoist MCP Server.
Instructions
Mark a task as complete by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | The ID of the task to complete |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "The ID of the task to complete",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}