TRUECALC
MCP

sheet:rename

Renames a sheet.

Parameters

NameTypeRequiredDescription
sheetstringyesThe sheet to rename. This is the sheet's NAME.
namestringyesThe name to rename it to.

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 rename. This is the sheet's NAME.",
      "type": "string"
    },
    "name": {
      "description": "The name to rename it to.",
      "type": "string"
    }
  },
  "required": [
    "sheet",
    "name"
  ]
}

On this page