create_worksheet
Generate and add a new worksheet to an Excel workbook by specifying the file path and sheet name. Integrates with xlwings Excel MCP Server for secure, corporate-grade workbook management.
Instructions
Create new worksheet in workbook.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | ||
sheet_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"title": "Filepath",
"type": "string"
},
"sheet_name": {
"title": "Sheet Name",
"type": "string"
}
},
"required": [
"filepath",
"sheet_name"
],
"title": "create_worksheetArguments",
"type": "object"
}