Smartsheet MCP Server

smartsheet_write

Write data to a Smartsheet

Input Schema

NameRequiredDescriptionDefault
column_mapYesObject mapping data fields to Smartsheet column IDs
row_dataYesArray of objects containing the data to write
sheet_idYesSmartsheet sheet ID

Input Schema (JSON Schema)

{ "properties": { "column_map": { "additionalProperties": { "type": "string" }, "description": "Object mapping data fields to Smartsheet column IDs", "type": "object" }, "row_data": { "description": "Array of objects containing the data to write", "items": { "type": "object" }, "type": "array" }, "sheet_id": { "description": "Smartsheet sheet ID", "type": "string" } }, "required": [ "sheet_id", "row_data", "column_map" ], "type": "object" }