Monday.com MCP Server

by sakce
Verified

monday-update-item

Update a Monday.com item's or sub-item's column values.

Input Schema

NameRequiredDescriptionDefault
boardIdYesMonday.com Board ID that the Item or Sub-item is on.
columnValuesYesDictionary of column values to update the Monday.com Item or Sub-item with. ({column_id: value})
itemIdYesMonday.com Item or Sub-item ID to update the columns of.

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 update the Monday.com Item or Sub-item with. ({column_id: value})", "type": "object" }, "itemId": { "description": "Monday.com Item or Sub-item ID to update the columns of.", "type": "string" } }, "required": [ "boardId", "itemId", "columnValues" ], "type": "object" }