execute_cell
Run a specific cell in a Jupyter notebook to execute code and generate output, using the notebook path and cell identifier.
Instructions
Execute a specific cell in the notebook using a Jupyter kernel
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| notebook_path | Yes | Absolute path to the Jupyter notebook file | |
| cell_id | Yes | Cell ID or zero-based index of the cell to execute |
Input Schema (JSON Schema)
{
"properties": {
"cell_id": {
"description": "Cell ID or zero-based index of the cell to execute",
"type": [
"string",
"integer"
]
},
"notebook_path": {
"description": "Absolute path to the Jupyter notebook file",
"type": "string"
}
},
"required": [
"notebook_path",
"cell_id"
],
"type": "object"
}