Create an item or subitem
plaky_create_itemCreate a new item or subitem on a board, specifying group and initial field values by key or title.
Instructions
Create a new item (row) on a board, or a subitem when parentId is set. Place it in a group via groupId or groupTitle (defaults to the first group). Set initial field values via fields: an object keyed by field key (e.g. "status-1") or field title (e.g. "Status"). Value formats by field type — String/RichText: "text"; Number: 13.4; Date: "2026-01-02T18:10:15.254Z"; Timeline: {start, end}; Status: "To do" or label id "1"; Tag: ["Product","HR"] or ids; Link: "https://..." or {url, displayText}; Person: {users:[{id}|{email}], teams:[{id}|{title}]}. Call plaky_get_board first to discover available fields and allowed values.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | Item title. Defaults to "New Item" / "New Subitem". | |
| fields | No | Initial field values keyed by field key or title. See tool description for value formats. | |
| boardId | Yes | Unique board identifier. | |
| groupId | No | Id of the group to create the item in. | |
| spaceId | Yes | Unique space identifier. | |
| parentId | No | If set, creates a subitem under this parent item id instead of a top-level item. | |
| groupTitle | No | Title of the group to create the item in (used if groupId is omitted). |