Tools: Tasks
listTasks
Section titled “listTasks”🔍 Read-only
List all tasks for the organization or measure.
Parameters: { "organization_id": "org_xxx", "measure_id": "measure_xxx", "size": 50, "cursor": "optional_cursor"}Supports: Pagination, filtering by measure
Returns: Array of tasks, next_cursor for pagination
Example:AI: "List all tasks" [Uses listTasks tool]AI: "Show tasks for measure measure_abc123" [Uses listTasks tool with measure_id filter]getTask
Section titled “getTask”🔍 Read-only
Get a task by ID.
Parameters: { "organization_id": "org_xxx", "task_id": "task_xxx"}Returns: Full task details
Example:AI: "Get details for task task_abc123" [Uses getTask tool]addTask
Section titled “addTask”✏️ Write
Add a new task to the organization.
Parameters: { "organization_id": "org_xxx", "title": "Task Title", "description": "Task description", "due_date": "2025-06-30"}Returns: Created task object
Example:AI: "Add a task to review access control policies" [Uses addTask tool]updateTask
Section titled “updateTask”✏️ Write
Update an existing task.
Parameters: { "organization_id": "org_xxx", "task_id": "task_xxx", "status": "COMPLETED"}Returns: Updated task object
Example:AI: "Mark task task_abc123 as COMPLETED" [Uses updateTask tool]assignTask
Section titled “assignTask”✏️ Write
Assign a task to a person.
Parameters: { "organization_id": "org_xxx", "task_id": "task_xxx", "user_id": "user_xxx"}Returns: Updated task with assignee
Example:AI: "Assign task task_abc123 to user user_abc123" [Uses assignTask tool]unassignTask
Section titled “unassignTask”✏️ Write
Unassign a task from a person.
Parameters: { "organization_id": "org_xxx", "task_id": "task_xxx", "user_id": "user_xxx"}Returns: Updated task with assignee removed
Example:AI: "Unassign task task_abc123 from user user_abc123" [Uses unassignTask tool]deleteTask
Section titled “deleteTask”✏️ Write
Delete a task.
Parameters: { "organization_id": "org_xxx", "task_id": "task_xxx"}Returns: Confirmation of deletion
Example:AI: "Delete task task_abc123" [Uses deleteTask tool]