create_item
Creates a new item with all fields in a single request, including title, column values, status, priority, and due date.
Instructions
Create an item (row) with all of its data in one call. cells maps columnId -> value (use get_board_schema for column ids); every cell is saved with the row. Use set_cell only for later edits.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Tags as an array of strings | |
| cells | No | Cell values keyed by column id: { "<columnId>": value }. Scalars, { amount, currency } for currency, { relatedItemIds: [...] } for relations | |
| title | Yes | Item title, shown as the row name | |
| status | No | Status value (todo, in_progress, done, or a value from the board's status options) | |
| boardId | Yes | Board id (from list_boards / create_board) | |
| dueDate | No | ISO date | |
| priority | No | Priority: low, medium, high or urgent | |
| projectId | Yes | Project id (from list_projects / create_project) | |
| description | No | Free-text description |