TRUECALC
MCP

sheet:delete

Deletes a sheet.

Parameters

NameTypeRequiredDescription
sheetstringyesThe 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"
  ]
}

On this page