mcp-notebooks
@Neuron1c
About mcp-notebooks
Notebook execution MCP server
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"mcp-notebooks": {
"command": "docker",
"args": [
"build",
".",
"-t",
"mcp-notebooks:latest"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is mcp-notebooks?
mcp-notebooks is an MCP server that enables an LLM to execute code progressively in a Jupyter-like kernel, retaining variables between executions for iterative exploratory data analysis (EDA). It is intended for users comfortable with Docker and willing to accept the current safety risks.
How to use mcp-notebooks?
Build the Docker image from the repository, then add it to your claude_desktop_config.json either via StdIO (docker run) or SSE (docker run on port 3001 plus supergateway). Additional Python libraries can be installed with uv add <package> before building.
Key features of mcp-notebooks
- Progressive code execution with variable retention in the kernel.
- Supports both StdIO and SSE transport modes.
- Runs in a Docker container for isolation.
- Built‑in kernel persists state across LLM requests.
Use cases of mcp-notebooks
- Iterative data analysis where the LLM reacts to intermediate results.
- Rapid prototyping of data‑processing scripts with an AI assistant.
- Teaching or demonstrating code that depends on previous cell outputs.
FAQ from mcp-notebooks
How do I install mcp-notebooks?
Clone the repository and run docker build . -t mcp-notebooks:latest. Then configure the server in claude_desktop_config.json as shown in the README.
What runtime environment is required?
Docker is required; the server is intended to be run inside a Docker container. It is not yet published on DockerHub.
How can I add extra Python libraries?
Add libraries with uv add your-package before building the Docker image. Recommended packages include numpy, pandas, scikit‑learn, matplotlib, and seaborn.
Is mcp-notebooks safe?
The README explicitly warns that it is “pretty dangerous to use in its current state” and strongly recommends running it inside a Docker container for isolation.
What transports are supported?
The server supports both StdIO (through a direct Docker command) and SSE (via an HTTP endpoint on port 3001 using supergateway).
Frequently asked questions
How do I install mcp-notebooks?
Clone the repository and run `docker build . -t mcp-notebooks:latest`. Then configure the server in `claude_desktop_config.json` as shown in the README.
What runtime environment is required?
Docker is required; the server is intended to be run inside a Docker container. It is not yet published on DockerHub.
How can I add extra Python libraries?
Add libraries with `uv add your-package` before building the Docker image. Recommended packages include numpy, pandas, scikit‑learn, matplotlib, and seaborn.
Is mcp-notebooks safe?
The README explicitly warns that it is “pretty dangerous to use in its current state” and strongly recommends running it inside a Docker container for isolation.
What transports are supported?
The server supports both StdIO (through a direct Docker command) and SSE (via an HTTP endpoint on port 3001 using `supergateway`).
Basic information
More Other MCP servers
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
MCP Go 🚀
mark3labsA Go implementation of the Model Context Protocol (MCP), enabling seamless integration between LLM applications and external data sources and tools.
ICSS
chokcoco不止于 CSS
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
IDA Pro MCP
mrexodiaAI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Comments