Smartsheet MCP Server

start_batch_analysis

Start a batch analysis job using Azure OpenAI

Input Schema

NameRequiredDescriptionDefault
customGoalNoCustom analysis goal for custom analysis type
rowIdsYesRows to process
sheet_idYesSmartsheet sheet ID
sourceColumnsYesColumns to analyze
targetColumnYesColumn to store results
typeYesAnalysis type

Input Schema (JSON Schema)

{ "properties": { "customGoal": { "description": "Custom analysis goal for custom analysis type", "type": "string" }, "rowIds": { "description": "Rows to process", "items": { "type": "string" }, "type": "array" }, "sheet_id": { "description": "Smartsheet sheet ID", "type": "string" }, "sourceColumns": { "description": "Columns to analyze", "items": { "type": "string" }, "type": "array" }, "targetColumn": { "description": "Column to store results", "type": "string" }, "type": { "description": "Analysis type", "enum": [ "summarize", "sentiment", "interpret", "custom" ], "type": "string" } }, "required": [ "sheet_id", "type", "sourceColumns", "targetColumn", "rowIds" ], "type": "object" }