list_tasks
Retrieve tasks from a Taiga project with optional filters using session and project IDs. Integrates AI systems with Taiga for efficient project management.
Instructions
Lists tasks within a specific project, optionally filtered.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filters | Yes | ||
project_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filters": {
"title": "filters",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"project_id",
"filters"
],
"title": "list_tasksArguments",
"type": "object"
}