Skip to main content
Glama
YmSaki
by YmSaki

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
IPYNB_MCP_DEFAULT_KERNELNoDefault kernel name to use when the notebook does not specify a kernel in metadata.kernelspec.name.

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
notebook_infoA

Return notebook metadata and compact summaries of all cells.

read_cellA

Read one cell by its zero-based index, including outputs for code cells.

add_cellA

Add a cell. Append when index is omitted. Creates a missing notebook.

edit_cellB

Replace a cell's source and optionally its type.

run_cellB

Execute one code cell in the notebook's persistent default kernel and save outputs.

restart_kernelA

Restart the notebook's kernel, clearing all in-memory variables.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 6 tools

Disambiguation5/5

Each tool targets a distinct operation: reading metadata, reading a cell, adding, editing, running, or restarting the kernel. There is minimal overlap and an agent can clearly select the right tool for the intended action.

Naming Consistency4/5

Most tools follow a clear verb_noun pattern: read_cell, add_cell, edit_cell, run_cell, restart_kernel. notebook_info is the only slight deviation, being noun_noun rather than get_notebook_info, but it remains readable and consistent with the overall style.

Tool Count5/5

Six tools is a well-scoped set for notebook manipulation. Each tool serves a clear and necessary purpose without unnecessary bloat.

Completeness3/5

The core lifecycle of reading, adding, editing, and executing cells is covered, and restart_kernel handles execution-state resets. However, a delete_cell operation is missing, which is a notable gap for editing workflows, and there is no way to reorder cells.

Maintenance

ActivityMaintained
ResponsivenessNo issues