Nurama Developers

list_my_tasks

List tasks assigned to the bot user (or, in DANGEROUSLY_USE_USER_JWT mode, to the human user).

Read-only tool.

List tasks assigned to the bot user (or, in DANGEROUSLY_USE_USER_JWT mode, to the human user). Use this to answer "what do I have to do?" or to find a taskId before updating status / details. Supports filtering by status, project, board, etc.

Input

PropertyTypeRequiredDescription
projectIdstringnoRestrict to one project (UUID).
status"pending" | "complete" | "cancelled"noRestrict to one task status.
limitnumbernoPage size (1-50, default 20). min 1. max 50

JSON Schema

{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "Restrict to one project (UUID)."
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "complete",
        "cancelled"
      ],
      "description": "Restrict to one task status."
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 50,
      "description": "Page size (1-50, default 20)."
    }
  },
  "additionalProperties": false
}

On this page