jupyter-mcp-server

JosephLin11/jupyter-mcp-server

3.2

If you are the rightful owner of jupyter-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Jupyter MCP Server is a comprehensive Model Context Protocol (MCP) server that bridges AI agents with Jupyter notebooks, enabling real-time code execution, visualization generation, and advanced image extraction capabilities.

Tools
5
Resources
0
Prompts
0

๐Ÿš€ Jupyter MCP Server

Python 3.11+ MCP Compatible Code Style

A comprehensive Model Context Protocol (MCP) server that bridges AI agents with Jupyter notebooks, enabling real-time code execution, visualization generation, and advanced image extraction capabilities.

๐ŸŽฏ About This Project

This project is a fork and enhancement of the original Jupyter MCP Server developed by Datalayer, Inc.. Special thanks to the Datalayer team for their foundational work on integrating Jupyter with the Model Context Protocol ecosystem.

Key Enhancements in This Fork:

  • Improved documentation and setup process
  • Enhanced error handling and robustness
  • Additional example configurations
  • Streamlined installation and configuration
  • Updated dependencies and compatibility

๐ŸŒŸ Key Features

๐ŸŽฏ Real-Time Jupyter Integration

  • Live Code Execution: Execute Python code in real-time through WebSocket connections
  • Kernel Management: Automatic kernel creation, lifecycle management, and cleanup
  • Session Persistence: Maintain state across multiple operations

๐Ÿ–ผ๏ธ Advanced Image Extraction

  • Multi-Format Support: Extract PNG and JPEG images from matplotlib, seaborn, plotly
  • Base64 Encoding: Ready-to-use image data for AI processing
  • Comprehensive Output Handling: Text, images, errors, and execution results

๐Ÿ“š Complete Notebook Management

  • File Operations: Create, delete, switch between multiple notebooks
  • Cell Manipulation: Add, modify, move, delete cells with full CRUD operations
  • Content Management: Support for both markdown and code cells

๐Ÿ›ก๏ธ Enterprise-Ready Security

  • Smart XSRF Handling: Automatic token detection and management
  • Authentication Support: Compatible with tokenized Jupyter servers
  • Error Recovery: Graceful fallbacks for connection issues

๐Ÿ—๏ธ Architecture

graph TD
    A[AI Agent/Claude] --> B[MCP Server]
    B --> C[Jupyter Server API]
    B --> D[WebSocket Channels]
    C --> E[Kernel Management]
    D --> F[Real-time Execution]
    F --> G[Output Capture]
    G --> H[Image Extraction]
    G --> I[Text Processing]
    B --> J[Notebook Files]

๐Ÿ› ๏ธ 18 Comprehensive Tools

๐Ÿ“ Cell Content Management

  • add_execute_code_cell - Execute Python code with real-time output
  • add_markdown_cell - Add formatted documentation
  • modify_cell - Edit existing cell content
  • change_cell_type - Convert between markdown and code cells

๐Ÿ–ผ๏ธ Output Extraction

  • get_cell_image_output - Extract base64-encoded images (PNG/JPEG)
  • get_cell_text_output - Get all text outputs including errors and tracebacks

๐Ÿ—‚๏ธ Notebook File Operations

  • create_notebook - Create new notebook files
  • delete_notebook - Remove notebook files safely
  • switch_notebook - Change active notebook
  • list_notebooks - Browse available notebooks

๐Ÿ” Data Discovery

  • list_cells - Overview of all cells with preview
  • read_cell - Full content of specific cells
  • get_notebook_info - Comprehensive notebook metadata

๐Ÿš€ Quick Start

Prerequisites

  • Python 3.11+
  • Jupyter Notebook
  • Claude Desktop or compatible MCP client

Installation

  1. Clone the repository

    git clone https://github.com/JosephLin11/jupyter-mcp-server.git
    cd jupyter-mcp-server
    
  2. Install dependencies

    pip install -r requirements.txt
    
  3. Start Jupyter Server

    ./scripts/start_jupyter.sh
    
  4. Configure Claude Desktop Add to your claude_desktop_config.json:

    {
      "mcpServers": {
        "jupyter": {
          "command": "python",
          "args": ["/path/to/your/jupyter-mcp-server/src/jupyter_mcp_server.py"]
        }
      }
    }
    

    ๐Ÿ’ก Tip: Run python3 scripts/get_claude_config.py to generate the correct configuration with current paths!

๐Ÿ’ก Example Use Cases

๐Ÿ“Š Data Visualization Pipeline

# 1. Create and execute visualization code
add_execute_code_cell(cell_content="""
import matplotlib.pyplot as plt
import numpy as np
import seaborn as sns

# Generate sample data
data = np.random.normal(0, 1, 1000)

# Create beautiful visualization
plt.figure(figsize=(12, 8))
plt.subplot(2, 2, 1)
plt.hist(data, bins=50, alpha=0.7, color='skyblue')
plt.title('Distribution Analysis')

plt.subplot(2, 2, 2)
sns.boxplot(y=data)
plt.title('Box Plot Analysis')

plt.tight_layout()
plt.show()
""")

# 2. Extract the generated image
get_cell_image_output(cell_index=0)

๐Ÿงช Scientific Computing

# 3D surface visualization
add_execute_code_cell(cell_content="""
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
import matplotlib.pyplot as plt

fig = plt.figure(figsize=(12, 9))
ax = fig.add_subplot(111, projection='3d')

# Create mesh
x = np.linspace(-5, 5, 100)
y = np.linspace(-5, 5, 100)
X, Y = np.meshgrid(x, y)
Z = np.sin(np.sqrt(X**2 + Y**2))

# Render surface
surface = ax.plot_surface(X, Y, Z, cmap='plasma', alpha=0.9)
ax.set_title('3D Mathematical Function')
plt.colorbar(surface)
plt.show()
""")

# Extract 3D visualization
get_cell_image_output(cell_index=1)

๐Ÿ† Technical Highlights

Advanced WebSocket Implementation

  • Real-time bidirectional communication with Jupyter kernels
  • Comprehensive message type handling (execute_result, display_data, stream, error)
  • Automatic reconnection and fallback mechanisms

Smart Output Processing

  • Multi-format image extraction (PNG, JPEG) with base64 encoding
  • Structured output capture preserving metadata
  • Error handling with full traceback support

Robust Security Model

  • Automatic XSRF token detection and management
  • Multiple authentication endpoint support
  • Graceful degradation for different Jupyter configurations

Enterprise-Grade Error Handling

  • Comprehensive logging with configurable levels
  • Fallback execution modes for reliability
  • Resource cleanup and connection management

๐Ÿ“Š Comparison with Alternatives

FeatureThis Implementationjjsantos01 MCPCursor MCP
Tools Available๐Ÿ† 18 tools10 tools8-10 tools
Image Extraction๐Ÿ† PNG + JPEGPNG onlyNone
Setup Complexity๐Ÿ† AutomaticManual browser initCLI args
Version Support๐Ÿ† All Jupyter versionsJupyter 6.x onlyVersion agnostic
Real-time Execution๐Ÿ† WebSocket + HTTPWebSocket bridgeFile-only
Security Handling๐Ÿ† Auto XSRFBasicEnhanced

๐Ÿงช Testing

Run the comprehensive test suite:

# Test image extraction capabilities
python tests/test_image_extraction.py

# Test notebook operations  
python tests/test_notebook_save.py

๐Ÿ“ Project Structure

jupyter-mcp-server/
โ”œโ”€โ”€ src/
โ”‚   โ””โ”€โ”€ jupyter_mcp_server.py      # Main MCP server implementation
โ”œโ”€โ”€ notebooks/                     # ๐Ÿ““ All Jupyter notebooks are created here
โ”‚   โ””โ”€โ”€ mcp_notebook.ipynb         # Default notebook for MCP operations
โ”œโ”€โ”€ tests/
โ”‚   โ”œโ”€โ”€ test_image_extraction.py   # Image extraction tests
โ”‚   โ””โ”€โ”€ test_notebook_save.py      # Notebook operation tests
โ”œโ”€โ”€ scripts/
โ”‚   โ”œโ”€โ”€ start_jupyter.sh           # Jupyter server startup script
โ”‚   โ””โ”€โ”€ get_claude_config.py       # Claude configuration generator
โ”œโ”€โ”€ examples/
โ”‚   โ”œโ”€โ”€ claude_desktop_config.json # Example configuration
โ”‚   โ”œโ”€โ”€ mcp_notebook.ipynb         # Example notebook
โ”‚   โ””โ”€โ”€ new_notebook.ipynb         # Sample notebook
โ”œโ”€โ”€ docs/
โ”‚   โ”œโ”€โ”€ MCP_TOOLS_SUMMARY.md       # Complete tool reference
โ”‚   โ”œโ”€โ”€ SETUP.md                   # Setup guide
โ”‚   โ””โ”€โ”€ IMAGE_EXTRACTION_README.md # Image extraction guide
โ”œโ”€โ”€ requirements.txt               # Python dependencies
โ”œโ”€โ”€ pyproject.toml                 # Project configuration
โ””โ”€โ”€ README.md                      # Project documentation

๐Ÿค Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

๐Ÿ“„ License

This project is licensed under the BSD 3-Clause License - see the file for details.

๐ŸŒŸ Acknowledgments

  • Original Development: Datalayer, Inc. for creating the foundational Jupyter MCP Server
  • Inspired by the Model Context Protocol ecosystem
  • Built upon the robust Jupyter Server API
  • Enhanced with ideas from various MCP implementations
  • Special thanks to the open-source community

๐Ÿ“ง Contact

Joseph Lin - GitHub

Project Link: https://github.com/JosephLin11/jupyter-mcp-server

Original Project: https://github.com/datalayer/jupyter-mcp-server


โญ Star this repository if you find it useful! โญ

Built with โค๏ธ for the AI and data science community

Originally developed by Datalayer, enhanced and maintained by Joseph Lin