get_cells
Fetch a range of notebook cells in JSON format. Define the cell range by start and end indices, with an option to include code outputs.
Instructions
Gets a range of cells as JSON from the notebook.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cellIndexStart | No | The starting index for the cell range (inclusive). If not provided, this defaults to 0. | |
| cellIndexEnd | No | The end index for the cell range (inclusive). This must be greater than or equal to cellIndexStart. If not provided, this defaults to the last available cell index. | |
| includeOutputs | No | Whether to include the code cell execution outputs in the response. If not provided, this defaults to false. |