complete_task
Mark a task as completed in OmniFocus by specifying its unique task ID, enabling efficient task management and progress tracking within the MCP OmniFocus automation framework.
Instructions
Complete a task in OmniFocus.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes | The ID of the task to complete |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"description": "The ID of the task to complete",
"title": "Task Id",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}