TRUECALC
MCP

sheet:add

Adds a sheet.

Parameters

NameTypeRequiredDescription
namestring or nullnoThe name to give the new sheet. When present, this command trims it before validating. An explicit whitespace-only name is therefore refused as malformed, empty after trim, never silently treated as omitted. Defaults to null.

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": {
    "name": {
      "description": "The name to give the new sheet. When present, this command trims it before validating. An explicit whitespace-only name is therefore refused as malformed, empty after trim, never silently treated as omitted.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  }
}

On this page