Search Documentation
Search across all documentation pages
list_tasks
List tasks from the kanban board. Returns decrypted titles and descriptions. Filter by vault, status, assigned agent, or limit. Tasks are stored as memories with memoryType='task'.
Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| vaultId | string (UUID) | optional | Filter tasks by vault. Defaults to defaultVaultId. |
| status | string | optional | Filter tasks by status: backlog, todo, in_progress, done, blocked |
| assignedAgentId | string (max 200 chars) | optional | Filter tasks assigned to a specific agent. Use your agent type to find tasks assigned to you. |
| limit | integer (1-200) | optional | Max tasks to return (default 100) |
Returns#
An array of task objects, each containing the task ID, title, description, status, priority, assigned agent, completion criteria, and timestamps.
Example#
json
{
"tool": "list_tasks",
"arguments": {
"status": "in_progress",
"assignedAgentId": "claude_code"
}
}