notebook-edit
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| notebook_revA | Get the notebook's current revision token: {"path", "rev"}.
|
| create_notebookA | Create a NEW empty .ipynb notebook at Use this instead of hand-writing notebook JSON. |
| list_cellsA | List every cell as a compact outline (cheap overview). Returns index, id, type, summary, num_lines, has_outputs, has_error per cell.
|
| read_cellsA | Read one or more cells at once, addressed by Pass exactly one of Large results are bounded: each cell's source is windowed (~8000 chars) and
the response total is capped (~20000 chars). A windowed cell carries
source_truncated/source_length/source_offset — page it by re-reading that
target with a larger |
| insert_cellA | Insert a new cell BEFORE cell_type must be one of: code, markdown, raw. Indices are 0-based.
Optionally pass |
| insert_cellsA | Insert several cells at once, contiguously BEFORE Prefer this over many insert_cell calls when adding a block of cells: one
round-trip, no index bookkeeping between inserts. |
| edit_cellA | Replace a cell's ENTIRE source. For small changes prefer patch_cell. Target the cell by |
| patch_cellA | Preferred edit tool: replace a unique Target the cell by |
| delete_cellA | Delete a cell, addressed by Prefer |
| move_cellA | Move a cell to Address the moved cell by |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Each tool has a clearly distinct purpose: create notebook, insert/delete/edit/patch/move cells, list/read cells, and get revision. Overlap between edit_cell and patch_cell is resolved by descriptions favoring patch for small changes.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., create_notebook, delete_cell, list_cells). No mixing of conventions or vague verbs.
10 tools cover the domain of notebook cell editing thoroughly without bloat. Each tool serves a necessary operation (single/batch insert, edit/patch, move, delete, list/read, revision).
The tool set provides full CRUD for cells and includes batch operations and concurrency support. Missing notebook-level operations like delete or rename, but these may be out of scope for an editing tool.