Nurama Developers

get_board_tasks

List tasks on one specific board, with optional column / status / assignee / tag filters.

Read-only tool.

List tasks on one specific board, with optional column / status / assignee / tag filters. Use this when you already know the board you care about. For tasks across an entire project, use list_project_tasks.

Input

PropertyTypeRequiredDescription
boardIdstringyesUUID of the board.
columnIdstringnoRestrict to one column on the board.
status"pending" | "inProgress" | "complete" | "closed"noRestrict to one task status.
assignedToIdstringnoRestrict to tasks assigned to one user.
searchstringnoCase-insensitive substring match on the task subject.
tagsstring[]noRestrict to tasks carrying any of these tag UUIDs.

JSON Schema

{
  "type": "object",
  "properties": {
    "boardId": {
      "type": "string",
      "description": "UUID of the board."
    },
    "columnId": {
      "type": "string",
      "description": "Restrict to one column on the board."
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "inProgress",
        "complete",
        "closed"
      ],
      "description": "Restrict to one task status."
    },
    "assignedToId": {
      "type": "string",
      "description": "Restrict to tasks assigned to one user."
    },
    "search": {
      "type": "string",
      "description": "Case-insensitive substring match on the task subject."
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Restrict to tasks carrying any of these tag UUIDs."
    }
  },
  "required": [
    "boardId"
  ],
  "additionalProperties": false
}

On this page