do_mark_task_as_done
Mark tasks as completed in the Do realm using the input task record name. Part of the addTaskManager MCP Server, ensuring tasks follow the Assess-Decide-Do framework workflow.
Instructions
Mark tasks as completed in Do realm.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskRecordName | Yes | Task record name |
Input Schema (JSON Schema)
{
"properties": {
"taskRecordName": {
"description": "Task record name",
"type": "string"
}
},
"required": [
"taskRecordName"
],
"type": "object"
}