Create Task
create_taskCreate a task (card) in a column on a 'todo' board. Generates and returns a stable task id. column_id must reference an existing column (see list_tasks). description is free-form prose stored on the card; priority is one of 'H' | 'M' | 'L' (omit for none); due_date is an ISO 8601 date string; assignee is free text (name / initials / email). sort is a float ordering key within the column (ascending), defaulting to 0.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| done | No | Whether the task is completed (checked off). Defaults to false. | |
| name | Yes | ||
| sort | No | Float ordering key within the column. Defaults to 0. | |
| author | No | Author tag, defaults to ai:claude. | |
| assignee | No | ||
| board_id | Yes | ||
| due_date | No | ISO 8601 date. | |
| priority | No | High / Medium / Low. Omit for none. | |
| column_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. | |
| description | No |