mark_task_done
Update task status to completed in the TaskWarrior MCP Server by specifying the task identifier. Simplifies task management through natural language commands.
Instructions
Mark a task as done (completed)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identifier | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"identifier": {
"type": "string"
}
},
"required": [
"identifier"
],
"type": "object"
}