--- id: jupyter-server-mcp version: "0.2.1" license: BSD 3-Clause License Copyright (c) 2025, jupyter-ai-contrib Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are… (full text in the JSON record) license_treatment: permissive maintenance: active --- # jupyter-server-mcp License: permissive · Maintenance: active · Downloads: 84.8K/mo ## What it is and what it does jupyter-server-mcp is a Jupyter Server extension that bridges Jupyter and the Model Context Protocol (MCP), allowing you to register Python functions as tools accessible to MCP clients like Claude, Mistral, and other AI assistants. It runs an HTTP server (default port 3001) that exposes registered functions through the MCP protocol, making Jupyter functionality available to external AI tools. The extension supports two registration patterns: manual configuration via Jupyter's traitlets system (specifying tools as "module:function" strings) and automatic discovery through Python package entrypoints. It depends on fastmcp for the underlying MCP server implementation and integrates directly with Jupyter Server's extension lifecycle, starting the MCP server automatically when Jupyter starts. Use it for: - Enable Claude or other MCP clients to read and edit Jupyter notebooks by registering notebook toolkit functions as MCP tools - Expose custom Python utility functions to AI assistants running in a terminal or IDE without modifying the assistant's codebase - Build a bridge between Jupyter-based data analysis and AI coding agents that need access to notebook operations and file system tools - Register standard library functions (os, json, time) or third-party tools as MCP endpoints for agent automation workflows - Allow package authors to expose their tools to MCP clients by declaring entrypoints in pyproject.toml ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Exposes Python functions as tools to MCP clients via a Jupyter Server extension, enabling AI assistants and other MCP-compatible applications to call registered functions through an HTTP endpoint. Yes, if you run Jupyter Server and want to make its functionality available to MCP clients. The extension is actively maintained, has low install friction, carries a permissive license, and requires only two common dependencies. Start with the quick-start configuration to expose a few functions and verify the MCP endpoint works with your chosen client. ## Install pip install jupyter-server-mcp uv add jupyter-server-mcp poetry add jupyter-server-mcp ## Installing jupyter-server-mcp Before you install: Low install friction—pure Python wheel with only two runtime dependencies (fastmcp and jupyter-server). Marked as active maintenance with a release within the past 113 days. License in practice: BSD 3-Clause License permits commercial and private use with minimal restrictions; you must retain copyright notices and disclaimers in source and binary distributions. Quickstart: # Install python -m pip install jupyter-server-mcp # Create jupyter_config.py c = get_config() c.MCPExtensionApp.mcp_name = "My Jupyter MCP" c.MCPExtensionApp.mcp_tools = ["os:getcwd", "json:dumps"] # Start Jupyter jupyter lab --config=jupyter_config.py # MCP server now available at http://localhost:3001/mcp Requires Jupyter Server to be running; MCP clients must be configured with the correct host and port (default 3001). Verify before relying: - Whether fastmcp and jupyter-server versions have known compatibility constraints beyond what the package declares - Whether the entrypoint-based tool discovery mechanism works reliably across different package installation methods - Performance characteristics when registering and serving large numbers of tools simultaneously ## Package facts - License: BSD 3-Clause License Copyright (c) 2025, jupyter-ai-contrib Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are… (full text in the JSON record) (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 84.8K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags jupyter server mcp extension, model context protocol jupyter, expose functions as mcp tools, jupyter ai assistant integration, mcp server for jupyter, fastmcp jupyter extension, jupyter function registry mcp, jupyter-extension, mcp-protocol, ai-integration [View on SkillFed](https://skillfed.io/packages/jupyter-server-mcp) · [View on PyPI](https://pypi.org/project/jupyter-server-mcp/)