Jupyter_MCP_Server
shreyu258
README
Jupyter_MCP_Server
JupyterMCP - Jupyter Notebook Model Context Protocol Integration
JupyterMCP connects Jupyter Notebook to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Jupyter Notebooks. This integration enables AI-assisted code execution, data analysis, visualization, and more.
Features
- Two-way communication: Connect Claude AI to Jupyter Notebook through a WebSocket-based server
- Cell manipulation: Insert, execute, and manage notebook cells
- Notebook management: Save notebooks and retrieve notebook information
- Cell execution: Run specific cells or execute all cells in a notebook
- Output retrieval: Get output content from executed cells with text limitation options
Components
The system consists of three main components:
- WebSocket Server (
jupyter_ws_server.py
): Sets up a WebSocket server inside Jupyter that bridges communication between notebook and external clients - Client JavaScript (
client.js
): Runs in the notebook to handle operations (inserting cells, executing code, etc.) - MCP Server (
jupyter_mcp_server.py
): Implements the Model Context Protocol and connects to the WebSocket server
Installation
Prerequisites
- Python 3.12 or newer (probably also work with older versions, but not tested)
uv
package manager- Claude AI desktop application
Installing uv
If you're on Mac:
brew install uv
On Windows (PowerShell):
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
For other platforms, see the uv installation guide.
Setup
-
Clone or download this repository to your computer:
git clone https://github.com/jjsantos01/jupyter-notebook-mcp.git
-
Create virtual environment with required packages an install
jupyter-mcp
kernel, so it can be recognized by your jupyter installation, if you had one before.uv run python -m ipykernel install --name jupyter-mcp
-
(optional) Install additional Python packages for your analysis:
uv pip install seaborn
-
Configure Claude desktop integration: Go to
Claude
>Settings
>Developer
>Edit Config
>claude_desktop_config.json
to include the following:{ "mcpServers": { "jupyter": { "command": "uv", "args": [ "--directory", "/ABSOLUTE/PATH/TO/PARENT/REPO/FOLDER/src", "run", "jupyter_mcp_server.py" ] } } }
Replace
/ABSOLUTE/PATH/TO/
with the actual path to thesrc
folder on your system. For example:- Windows:
"C:\\Users\\MyUser\\GitHub\\jupyter-notebook-mcp\\src\\"
- Mac:
/Users/MyUser/GitHub/jupyter-notebook-mcp/src/
If you had previously opened Claude, then
File
>Exit
and open it again. - Windows:
Usage
Starting the Connection
-
Start your Jupyter Notebook (version 6.x) server:
uv run jupyter nbclassic
-
Create a new Jupyter Notebook and make sure that you choose the
jupyter-mcp
kernel:kernel
->change kernel
->jupyter-mcp
-
In a notebook cell, run the following code to initialize the WebSocket server:
import sys sys.path.append('/path/to/jupyter-notebook-mcp/src') # Add the path to where the scripts are located from jupyter_ws_server import setup_jupyter_mcp_integration # Start the WebSocket server inside Jupyter server, port = setup_jupyter_mcp_integration()
Don't forget to replace here
'/path/to/jupyter-notebook-mcp/src'
withsrc
folder on your system. For example:- Windows:
"C:\\Users\\MyUser\\GitHub\\jupyter-notebook-mcp\\src\\"
- Mac:
/Users/MyUser/GitHub/jupyter-notebook-mcp/src/
- Windows:
-
Launch Claude desktop with MCP enabled.
Using with Claude
Once connected, Claude will have access to the following tools:
ping
- Check server connectivityinsert_and_execute_cell
- Insert a cell at the specified position and execute itsave_notebook
- Save the current Jupyter notebookget_cells_info
- Get information about all cells in the notebookget_notebook_info
- Get information about the current notebookrun_cell
- Run a specific cell by its indexrun_all_cells
- Run all cells in the notebookget_cell_text_output
- Get the output content of a specific cellget_image_output
- Get the images output of a specific celledit_cell_content
- Edit the content of an existing cellset_slideshow_type
- Set the slide show type for cell
Recommended Servers
Crypto Price & Market Analysis MCP Server
A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.
MCP PubMed Search
Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.
dbt Semantic Layer MCP Server
A server that enables querying the dbt Semantic Layer through natural language conversations with Claude Desktop and other AI assistants, allowing users to discover metrics, create queries, analyze data, and visualize results.
mixpanel
Connect to your Mixpanel data. Query events, retention, and funnel data from Mixpanel analytics.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Nefino MCP Server
Provides large language models with access to news and information about renewable energy projects in Germany, allowing filtering by location, topic (solar, wind, hydrogen), and date range.
Vectorize
Vectorize MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking.
Mathematica Documentation MCP server
A server that provides access to Mathematica documentation through FastMCP, enabling users to retrieve function documentation and list package symbols from Wolfram Mathematica.
kb-mcp-server
An MCP server aimed to be portable, local, easy and convenient to support semantic/graph based retrieval of txtai "all in one" embeddings database. Any txtai embeddings db in tar.gz form can be loaded
Research MCP Server
The server functions as an MCP server to interact with Notion for retrieving and creating survey data, integrating with the Claude Desktop Client for conducting and reviewing surveys.