get_today_completed_tasks
Retrieve tasks completed today to track daily progress. Set a task limit (default: 20) to view accomplishments and enhance productivity using OmniFocus MCP Enhanced.
Instructions
Get tasks completed today - view today's accomplishments
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | 返回的最大任务数量 (默认: 20) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 20,
"description": "返回的最大任务数量 (默认: 20)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}