Create an item
monday_create_itemCreate a new item on a Monday.com board with plain-text column values; the tool converts them to the exact API shape for storage, removing the need for manual JSON.
Instructions
Creates one item on a board. Give values keyed by column id or column title, with plain values such as "Done" for a status or "2026-08-14" for a date. This server converts them to the JSON that monday.com stores. Call monday_get_board first to see the columns.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The item name. | |
| group | No | Group id or group title. The default is the top group. | |
| values | No | Column values, for example {"Status": "Working on it", "Owner": [12345678]}. | |
| board_id | Yes | The numeric board id. | |
| create_labels_if_missing | No | True adds a status or dropdown label that does not exist yet. |