Skip to content About The people and vision powering Probo Blog The latest news from Probo Stories Hear from our customers Changelog Latest product updates Docs Documentation for Probo GitHub Explore our open-source compliance tools

Tools: Tasks

🔍 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]

🔍 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]

✏️ 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]

✏️ 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]

✏️ 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]

✏️ 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]

✏️ 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]