get_next_tasks
Retrieve pending tasks organized by project or tags using the TaskWarrior MCP Server to streamline task management and prioritize next actions effectively.
Instructions
Get a list of all pending tasks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | No | ||
tags | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project": {
"pattern": "^[a-z.]+$",
"type": "string"
},
"tags": {
"items": {
"pattern": "^a-z$",
"type": "string"
},
"type": "array"
}
},
"type": "object"
}