Smartsheet MCP Server

smartsheet_search

Search for content in a Smartsheet

Input Schema

NameRequiredDescriptionDefault
optionsNoSearch options
patternYesSearch pattern (text or regex)
sheet_idYesSmartsheet sheet ID

Input Schema (JSON Schema)

{ "properties": { "options": { "description": "Search options", "properties": { "case_sensitive": { "description": "Case sensitive search (default: false)", "type": "boolean" }, "columns": { "description": "Specific columns to search (default: all)", "items": { "type": "string" }, "type": "array" }, "include_system": { "description": "Include system-managed columns (default: false)", "type": "boolean" }, "regex": { "description": "Use regex pattern matching (default: false)", "type": "boolean" }, "whole_word": { "description": "Match whole words only (default: false)", "type": "boolean" } }, "type": "object" }, "pattern": { "description": "Search pattern (text or regex)", "type": "string" }, "sheet_id": { "description": "Smartsheet sheet ID", "type": "string" } }, "required": [ "sheet_id", "pattern" ], "type": "object" }