MCP
structure:unmergeCells
Splits previously merged cells back apart.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sheet | string | yes | — |
a1 | string | yes | — |
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 single cell, anchor or interior whose covering merge should be dissolved.",
"type": "object",
"properties": {
"sheet": {
"type": "string"
},
"a1": {
"type": "string"
}
},
"required": [
"sheet",
"a1"
]
}