MCP
sheet:delete
Deletes a sheet.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sheet | string | yes | The sheet to delete. |
Returns
Nothing beyond the standard MCP success envelope.
Schema
Request payload, as JSON Schema:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Payload",
"type": "object",
"properties": {
"sheet": {
"description": "The sheet to delete.",
"type": "string"
}
},
"required": [
"sheet"
]
}