Smartsheet MCP Server

smartsheet_add_column

Add a new column to a Smartsheet

Input Schema

NameRequiredDescriptionDefault
formulaNoFormula for calculated columns
indexNoOptional position index
optionsNoOptions for PICKLIST type
sheet_idYesSmartsheet sheet ID
titleYesColumn title
typeYesColumn type
validationNoEnable validation

Input Schema (JSON Schema)

{ "properties": { "formula": { "description": "Formula for calculated columns", "type": "string" }, "index": { "description": "Optional position index", "type": "number" }, "options": { "description": "Options for PICKLIST type", "items": { "type": "string" }, "type": "array" }, "sheet_id": { "description": "Smartsheet sheet ID", "type": "string" }, "title": { "description": "Column title", "type": "string" }, "type": { "description": "Column type", "enum": [ "TEXT_NUMBER", "DATE", "CHECKBOX", "PICKLIST", "CONTACT_LIST" ], "type": "string" }, "validation": { "description": "Enable validation", "type": "boolean" } }, "required": [ "sheet_id", "title", "type" ], "type": "object" }