Skip to content

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#

ParameterTypeRequiredDescription
vaultIdstring (UUID)optionalFilter tasks by vault. Defaults to defaultVaultId.
statusstringoptionalFilter tasks by status: backlog, todo, in_progress, done, blocked
assignedAgentIdstring (max 200 chars)optionalFilter tasks assigned to a specific agent. Use your agent type to find tasks assigned to you.
limitinteger (1-200)optionalMax 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"
  }
}