Google Sheets
gs_add_sheet
Add a new sheet/tab to a spreadsheet. Optionally set row/column count and tab color.
Remote node2flow/google-sheets
Other tools also called gs_add_sheet?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Name for the new sheet/tab"
},
"row_count": {
"type": "number",
"description": "Number of rows (default: 1000)"
},
"column_count": {
"type": "number",
"description": "Number of columns (default: 26)"
},
"tab_color_red": {
"type": "number",
"description": "Tab color red component (0-1)"
},
"spreadsheet_id": {
"type": "string",
"description": "The spreadsheet ID"
},
"tab_color_blue": {
"type": "number",
"description": "Tab color blue component (0-1)"
},
"tab_color_green": {
"type": "number",
"description": "Tab color green component (0-1)"
}
}
}