TRUECALC
MCP

sheet:setActive

Sets the active sheet.

Parameters

NameTypeRequiredDescription
sheetstringyesThe sheet to make active.

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",
  "description": "The sheet to activate.",
  "type": "object",
  "properties": {
    "sheet": {
      "description": "The sheet to make active.",
      "type": "string"
    }
  },
  "required": [
    "sheet"
  ]
}

On this page