todoist_close_task
Mark a task as complete in Todoist by providing the task ID. This tool streamlines task management by allowing users to close tasks directly through the MCP server integration.
Instructions
Close a task in Todoist (i.e., mark the task as complete)
Args: task_id: ID of the task to close
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"title": "Task Id",
"type": "string"
}
},
"required": [
"task_id"
],
"title": "todoist_close_taskArguments",
"type": "object"
}