create_sheets_tool
Generate new sheets in a Google Spreadsheet by specifying a spreadsheet name and list of sheet names. Simplify organization and structure for data management.
Instructions
Create new sheets in a Google Spreadsheet.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| sheet_names | Yes | List of sheet names to create as new sheets | |
| spreadsheet_name | Yes | The name of the Google Spreadsheet | 
Input Schema (JSON Schema)
{
  "properties": {
    "sheet_names": {
      "description": "List of sheet names to create as new sheets",
      "items": {
        "type": "string"
      },
      "title": "Sheet Names",
      "type": "array"
    },
    "spreadsheet_name": {
      "description": "The name of the Google Spreadsheet",
      "title": "Spreadsheet Name",
      "type": "string"
    }
  },
  "required": [
    "spreadsheet_name",
    "sheet_names"
  ],
  "title": "create_sheets_toolArguments",
  "type": "object"
}