mcp-notebooks
@Neuron1c
About mcp-notebooks
Notebook execution MCP server
Basic information
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).
More Other MCP servers
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
Servers
modelcontextprotocolModel Context Protocol Servers
IDA Pro MCP
mrexodiaAI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Reactive Resume
amruthpillaiA one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. Try it out today!
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
Comments