get_cell
Fetch a cell's full details—value, type, UI flags, chart config, and last-run status. Opt into get_full_content to avoid the 4 KB cap when the complete value is needed before editing.
Instructions
Get full details of a cell (value, kind via type, UI flags, chart config, last-run status + trimmed error). type:"markdown" marks a prose cell whose value is markdown source; SQL cells omit type. Never includes query result data. By default the value is capped at 4 KB; a capped response carries truncated: true and full_length. A truncated value is NOT the cell's real content — NEVER write it back (update_cell / apply_notebook_state value); re-read with get_full_content: true first, or keep the cell with preserve_value: true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cell_id | Yes | ||
| buffer_id | Yes | ||
| get_full_content | Yes | True returns the verbatim full value with no cap (errors above 1 MB). Required before rewriting any cell whose read came back truncated. Null/omitted applies the 4 KB cap. |