list_tasks
Retrieve and filter tasks by status or priority to manage your productivity workflow within the TodoPomo system.
Instructions
List all tasks with optional filtering
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | Filter by status | |
| priority | No | Filter by priority |
Input Schema (JSON Schema)
{
"properties": {
"priority": {
"description": "Filter by priority",
"enum": [
"low",
"medium",
"high",
"all"
],
"type": "string"
},
"status": {
"description": "Filter by status",
"enum": [
"pending",
"in-progress",
"completed",
"all"
],
"type": "string"
}
},
"type": "object"
}