Create Column
create_columnAdd a kanban column (swimlane) to a 'todo' board. Generates and returns a stable column id. sort is a float ordering key (ascending); omit to default to 0. lane is an integer row index for multi-row layouts (defaults to 0). color is an optional title color ('red' / 'blue' / 'green', or 'auto' / omit for default). To rename, reorder, recolor or move between lanes later use update_column.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lane | No | Row index for multi-row layouts. Defaults to 0. | |
| sort | No | Float ordering key (ascending). Defaults to 0. | |
| color | No | Title color: 'red', 'blue', 'green', or 'auto' (default). | |
| title | Yes | ||
| author | No | Author tag, defaults to ai:claude. | |
| board_id | Yes | ||
| access_key | No | 8-character lowercase alphanumeric board access key when the board is locked (legacy 6-character lowercase alphanumeric keys are also accepted). Equivalent to setting the `X-Board-Key` HTTP header on the JSON-RPC POST. Omit for unlocked boards. Obtain via POST /api/boards/<id>/lock. |