Smartsheet MCP Server

smartsheet_update

Update existing rows in a Smartsheet

Input Schema

NameRequiredDescriptionDefault
column_mapYesObject mapping data fields to Smartsheet column IDs
sheet_idYesSmartsheet sheet ID
updatesYesArray of updates containing row_id and data

Input Schema (JSON Schema)

{ "properties": { "column_map": { "additionalProperties": { "type": "string" }, "description": "Object mapping data fields to Smartsheet column IDs", "type": "object" }, "sheet_id": { "description": "Smartsheet sheet ID", "type": "string" }, "updates": { "description": "Array of updates containing row_id and data", "items": { "properties": { "data": { "description": "Data to update in the row", "type": "object" }, "row_id": { "description": "Row ID to update", "type": "string" } }, "required": [ "row_id", "data" ], "type": "object" }, "type": "array" } }, "required": [ "sheet_id", "updates", "column_map" ], "type": "object" }