mcp-server-jupyter
MCP server for Jupyter Notebooks and JupyterLab
Overview
MCP server for Jupyter Notebooks and JupyterLab allows users to manage and interact with Jupyter notebooks programmatically.
To use mcp-server-jupyter, start JupyterLab or Jupyter Notebook, configure the MCP server in your Claude Desktop, and then open or create a notebook to interact with it.
- Read notebook content with or without outputs. - Add, edit, and execute cells in notebooks. - Programmatic interaction with Jupyter notebooks.
- Automating notebook management tasks.
- Integrating Jupyter notebooks with other applications.
- Enhancing productivity in data analysis workflows.
Add to your AI client
Use these steps to connect mcp-server-jupyter in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-jupyter-ihrpr": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-jupyter-ihrpr"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-jupyter-ihrpr": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-jupyter-ihrpr"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-jupyter-ihrpr": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-jupyter-ihrpr"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-jupyter-ihrpr": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-jupyter-ihrpr"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-jupyter-ihrpr": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-jupyter-ihrpr"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-jupyter-ihrpr": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-jupyter-ihrpr"
]
}
}
}FAQ
Can I use mcp-server-jupyter with any Jupyter notebook?
Yes! It works with any Jupyter notebook as long as the server is properly configured.
Is there a specific environment required to run it?
Yes! You need to set up a virtual environment and configure it in the MCP server settings.
What license does this project use?
This project is licensed under the MIT License.