sheets_create_spreadsheet
Create a new Google Sheets spreadsheet with customizable titles, sheet configurations, and predefined rows and columns through the mcp-gsheets server.
Instructions
Create a new Google Sheets spreadsheet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sheets | No | Array of sheets to create in the spreadsheet | |
title | Yes | The title of the new spreadsheet |
Input Schema (JSON Schema)
{
"properties": {
"sheets": {
"description": "Array of sheets to create in the spreadsheet",
"items": {
"properties": {
"columnCount": {
"description": "Number of columns in the sheet (default: 26)",
"type": "number"
},
"rowCount": {
"description": "Number of rows in the sheet (default: 1000)",
"type": "number"
},
"title": {
"description": "The title of the sheet",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"title": {
"description": "The title of the new spreadsheet",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}