jupyter-ai-contrib/jupyter-server-mcp
If you are the rightful owner of jupyter-server-mcp 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.
A configurable MCP server extension for Jupyter Server that allows dynamic registration of Python functions as tools accessible to MCP clients.
Jupyter Server MCP Extension
A configurable MCP (Model Context Protocol) server extension for Jupyter Server that allows dynamic registration of Python functions as tools accessible to MCP clients from a running Jupyter Server.
https://github.com/user-attachments/assets/aa779b1c-a443-48d7-b3eb-13f27a4333b3
Overview
This extension provides a simplified, trait-based approach to exposing Jupyter functionality through the MCP protocol. It can dynamically load and register tools from various Python packages, making them available to AI assistants and other MCP clients.
Key Features
- Simplified Architecture: Direct function registration without complex abstractions
- Configurable Tool Loading: Register tools via string specifications (
module:function
) - Jupyter Integration: Seamless integration with Jupyter Server extension system
- HTTP Transport: FastMCP-based HTTP server with proper MCP protocol support
- Traitlets Configuration: Full configuration support through Jupyter's traitlets system
Installation
pip install jupyter-server-mcp
Quick Start
1. Basic Configuration
Create a jupyter_config.py
file:
c = get_config()
# Basic MCP server settings
c.MCPExtensionApp.mcp_name = "My Jupyter MCP Server"
c.MCPExtensionApp.mcp_port = 8080
# Register tools from existing packages
c.MCPExtensionApp.mcp_tools = [
# Standard library tools
"os:getcwd",
"json:dumps",
"time:time",
# Jupyter AI Tools - Notebook operations
"jupyter_ai_tools.toolkits.notebook:read_notebook",
"jupyter_ai_tools.toolkits.notebook:edit_cell",
# JupyterLab Commands Toolkit
"jupyterlab_commands_toolkit.tools:list_all_commands",
"jupyterlab_commands_toolkit.tools:execute_command",
]
2. Start Jupyter Server
jupyter lab --config=jupyter_config.py
The MCP server will start automatically on http://localhost:8080/mcp
.
3. Connect MCP Clients
Claude Code Configuration:
Set the following configuration:
"mcpServers": {
"jupyter-mcp": {
"type": "http",
"url": "http://localhost:8085/mcp"
}
}
Or use the claude
CLI:
claude mcp add --transport http jupyter-mcp http://localhost:8080/mcp
Gemini CLI Configuration:
Add the following to .gemini/settings.json
:
{
"mcpServers": {
"jupyter-mcp": {
"httpUrl": "http://localhost:8080/mcp"
}
}
}
Architecture
Core Components
MCPServer (jupyter_server_mcp.mcp_server.MCPServer
)
A simplified LoggingConfigurable class that manages FastMCP integration:
from jupyter_server_mcp.mcp_server import MCPServer
# Create server
server = MCPServer(name="My Server", port=8080)
# Register functions
def my_tool(message: str) -> str:
return f"Hello, {message}!"
server.register_tool(my_tool)
# Start server
await server.start_server()
Key Methods:
register_tool(func, name=None, description=None)
- Register a Python functionregister_tools(tools)
- Register multiple functions (list or dict)list_tools()
- Get list of registered toolsstart_server(host=None)
- Start the HTTP MCP server
MCPExtensionApp (jupyter_server_mcp.extension.MCPExtensionApp
)
Jupyter Server extension that manages the MCP server lifecycle:
Configuration Traits:
mcp_name
- Server name (default: "Jupyter MCP Server")mcp_port
- Server port (default: 3001)mcp_tools
- List of tools to register (format: "module:function")
Tool Loading System
Tools are loaded using string specifications in the format module_path:function_name
:
# Examples
"os:getcwd" # Standard library
"jupyter_ai_tools.toolkits.notebook:read_notebook" # External package
"math:sqrt" # Built-in modules
The extension dynamically imports the module and registers the function with FastMCP.
Configuration Examples
Minimal Setup
c = get_config()
c.MCPExtensionApp.mcp_port = 8080
Full Configuration
c = get_config()
# MCP Server Configuration
c.MCPExtensionApp.mcp_name = "Advanced Jupyter MCP Server"
c.MCPExtensionApp.mcp_port = 8080
c.MCPExtensionApp.mcp_tools = [
# File system operations (jupyter-ai-tools)
"jupyter_ai_tools.toolkits.file_system:read",
"jupyter_ai_tools.toolkits.file_system:write",
"jupyter_ai_tools.toolkits.file_system:edit",
"jupyter_ai_tools.toolkits.file_system:ls",
"jupyter_ai_tools.toolkits.file_system:glob",
# Notebook operations (jupyter-ai-tools)
"jupyter_ai_tools.toolkits.notebook:read_notebook",
"jupyter_ai_tools.toolkits.notebook:edit_cell",
"jupyter_ai_tools.toolkits.notebook:add_cell",
"jupyter_ai_tools.toolkits.notebook:delete_cell",
"jupyter_ai_tools.toolkits.notebook:create_notebook",
# Git operations (jupyter-ai-tools)
"jupyter_ai_tools.toolkits.git:git_status",
"jupyter_ai_tools.toolkits.git:git_add",
"jupyter_ai_tools.toolkits.git:git_commit",
"jupyter_ai_tools.toolkits.git:git_push",
# JupyterLab operations (jupyterlab-commands-toolkit)
"jupyterlab_commands_toolkit.tools:clear_all_outputs_in_notebook",
"jupyterlab_commands_toolkit.tools:open_document",
"jupyterlab_commands_toolkit.tools:open_markdown_file_in_preview_mode",
"jupyterlab_commands_toolkit.tools:show_diff_of_current_notebook",
# Utility functions
"os:getcwd",
"json:dumps",
"time:time",
"platform:system",
]
Running Tests
# Install development dependencies
pip install -e ".[dev]"
# Run tests
pytest tests/ -v
# Run with coverage
pytest --cov=jupyter_server_mcp tests/
Project Structure
jupyter_server_mcp/
āāā jupyter_server_mcp/
ā āāā __init__.py
ā āāā mcp_server.py # Core MCP server implementation
ā āāā extension.py # Jupyter Server extension
āāā tests/
ā āāā test_mcp_server.py # MCPServer tests
ā āāā test_extension.py # Extension tests
āāā demo/
ā āāā jupyter_config.py # Example configuration
ā āāā *.py # Debug/diagnostic scripts
āāā pyproject.toml # Package configuration
Contributing
- Fork the repository
- Create a feature branch
- Add tests for new functionality
- Ensure all tests pass:
pytest tests/
- Submit a pull request