sheets_create
Generate a new Google Sheet with customizable titles and sheet names using the MCP Google Workspace Server, enabling efficient spreadsheet creation via AI-driven commands.
Instructions
Create a new Google Sheet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sheets | No | Sheet names | |
title | Yes | Title of the spreadsheet |
Input Schema (JSON Schema)
{
"properties": {
"sheets": {
"description": "Sheet names",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Title of the spreadsheet",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}