get_project_tasks
Retrieve tasks from a specific project using project ID. Optionally include closed tasks and subfolder tasks for comprehensive project tracking.
Instructions
Get tasks from a specific project.
Args: project_id: The ID of the project closed: Set to true to retrieve all open and closed tasks subfolders: Set to true to return tasks from project subfolders
Input Schema
Name | Required | Description | Default |
---|---|---|---|
closed | No | ||
project_id | Yes | ||
subfolders | No |
Input Schema (JSON Schema)
{
"properties": {
"closed": {
"default": false,
"title": "Closed",
"type": "boolean"
},
"project_id": {
"title": "Project Id",
"type": "string"
},
"subfolders": {
"default": false,
"title": "Subfolders",
"type": "boolean"
}
},
"required": [
"project_id"
],
"title": "get_project_tasksArguments",
"type": "object"
}