Monday.com MCP Server

by sakce
Verified

monday-create-item

Create a new item in a Monday.com Board. Optionally, specify the parent Item ID to create a Sub-item.

Input Schema

NameRequiredDescriptionDefault
boardIdYesMonday.com Board ID that the Item or Sub-item is on.
columnValuesNoDictionary of column values to set {column_id: value}
groupIdNoMonday.com Board's Group ID to create the Item in. If set, parentItemId should not be set.
itemTitleYesName of the Monday.com Item or Sub-item that will be created.
parentItemIdNoMonday.com Item ID to create the Sub-item under. If set, groupId should not be set.

Input Schema (JSON Schema)

{ "properties": { "boardId": { "description": "Monday.com Board ID that the Item or Sub-item is on.", "type": "string" }, "columnValues": { "description": "Dictionary of column values to set {column_id: value}", "type": "object" }, "groupId": { "description": "Monday.com Board's Group ID to create the Item in. If set, parentItemId should not be set.", "type": "string" }, "itemTitle": { "description": "Name of the Monday.com Item or Sub-item that will be created.", "type": "string" }, "parentItemId": { "description": "Monday.com Item ID to create the Sub-item under. If set, groupId should not be set.", "type": "string" } }, "required": [ "boardId", "itemTitle" ], "type": "object" }