MCP
structure:insertColumn
Inserts the column.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sheet | string | yes | — |
beforeColumn | string | yes | — |
count | integer | no | Defaults to 1. |
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": {
"type": "string"
},
"beforeColumn": {
"type": "string"
},
"count": {
"type": "integer",
"format": "uint32",
"minimum": 0,
"default": 1
}
},
"required": [
"sheet",
"beforeColumn"
]
}