weeek_list_board_columns
List the status columns (e.g., Todo, In Progress, Done) of a WEEEK board. Use this to obtain column IDs before moving tasks.
Instructions
List columns (status buckets) of a specific WEEEK board. Use this AFTER weeek_list_boards to understand the statuses that exist on a board — e.g. 'Todo', 'In Progress', 'Done'. Columns are the task status mechanism in WEEEK; you MUST call this before weeek_move_task (Phase 3) to know which column_id to target. Returns array of {id, name, boardId, order}. The board_id parameter must come from weeek_list_boards — do not guess.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of items to return (1-50, default: 20). Default protects against 25k-token MCP response cap. | |
| offset | No | Number of items to skip for pagination (default: 0) | |
| board_id | Yes | WEEEK board ID whose columns to list. Obtain from weeek_list_boards. Required. |