delete_worksheet
Remove a specific worksheet from an Excel workbook using filepath and sheet name. Enables secure workbook management in corporate environments via xlwings Excel MCP Server integration.
Instructions
Delete worksheet from 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": "delete_worksheetArguments",
"type": "object"
}