list_tasks
Retrieve tasks from the task manager with optional filters for status, priority, or category to organize and view your task list.
Instructions
List tasks with optional filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Filter by category | |
priority | No | Filter by priority | all |
status | No | Filter by status | all |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Filter by category",
"type": "string"
},
"priority": {
"default": "all",
"description": "Filter by priority",
"enum": [
"low",
"medium",
"high",
"all"
],
"type": "string"
},
"status": {
"default": "all",
"description": "Filter by status",
"enum": [
"pending",
"in_progress",
"completed",
"all"
],
"type": "string"
}
},
"type": "object"
}