create_sheet
Create a new spreadsheet (sheet, excel, workbook) with an initial tab. Use this when asked to create a spreadsheet, table, workbook, tracker, or organize data in rows and columns.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rows | No | Number of rows (default 100) | |
| cells | No | Initial cell data in A1 notation. Each cell is an object with: value (string|number), and optional format: { bold, italic, underline (booleans), color (text hex e.g. "#FF0000"), bgColor (background hex), fontSize (number), fontFamily (string), align ("left"|"center"|"right"), numberFormat ("currency"|"percentage"|"number"|"date"), decimals (number), currencySymbol (string) }. Example: {"A1": {"value": "Name", "format": {"bold": true, "bgColor": "#1B3A5C", "color": "#FFFFFF"}}} | |
| title | Yes | Workbook title | |
| columns | No | Number of columns (default 26) | |
| tab_name | No | Name of the first tab (default "Sheet 1") | |
| server_id | No | Server ID |