MCP
clipboard:paste
Pastes previously copied or cut cells into a range.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sheet | string | yes | — |
source | string | yes | The cell the clipboard content was copied/cut FROM, e.g. "A1". |
raw | string | yes | The clipboard contents AT COPY/CUT TIME, a literal, a formula, leading =, or "". |
target | string | yes | The cell being pasted INTO, e.g. "B2". |
cut | boolean | no | false = copy, the default, true = cut, move. |
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"
},
"source": {
"description": "The cell the clipboard content was copied/cut FROM, e.g. `\"A1\"`.",
"type": "string"
},
"raw": {
"description": "The clipboard contents AT COPY/CUT TIME, a literal, a formula, leading `=`, or `\"\"`.",
"type": "string"
},
"target": {
"description": "The cell being pasted INTO, e.g. `\"B2\"`.",
"type": "string"
},
"cut": {
"description": "`false` = copy, the default, `true` = cut, move.",
"type": "boolean",
"default": false
}
},
"required": [
"sheet",
"source",
"raw",
"target"
]
}