# Mcp Server Jupyter

> MCP server for Jupyter Notebooks and JupyterLab

- **Type:** MCP server
- **Install:** `agentstack add mcp-ihrpr-mcp-server-jupyter`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [ihrpr](https://agentstack.voostack.com/s/ihrpr)
- **Installs:** 0
- **Category:** [Integrations](https://agentstack.voostack.com/c/integrations)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [ihrpr](https://github.com/ihrpr)
- **Source:** https://github.com/ihrpr/mcp-server-jupyter

## Install

```sh
agentstack add mcp-ihrpr-mcp-server-jupyter
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# mcp-server-jupyter

An MCP server for managing and interacting with Jupyter notebooks programmatically.

## Components

### Tools

The server provides six tools for notebook manipulation:

1. `read_notebook_with_outputs`: Read a notebook's content including cell outputs

   - Required: `notebook_path` (string)

2. `read_notebook_source_only`: Read notebook content without outputs

   - Required: `notebook_path` (string)
   - Use when size limitations prevent reading full notebook with outputs

3. `read_output_of_cell`: Read output of a specific cell

   - Required:
     - `notebook_path` (string)
     - `cell_id` (string)

4. `add_cell`: Add new cell to notebook

   - Required:
     - `notebook_path` (string)
     - `source` (string)
   - Optional:
     - `cell_type` (string): "code" or "markdown"
     - `position` (integer): insertion index (-1 to append)

5. `edit_cell`: Modify existing cell content

   - Required:
     - `notebook_path` (string)
     - `cell_id` (string): Unique ID of the cell to edit
     - `source` (string)

6. `execute_cell`: Execute a specific cell and return its output
   - Required:
     - `notebook_path` (string)
     - `cell_id` (string)
   - Useful for verifying cell execution and output

## Usage with Claude Desktop

### Step1: Start JupyterLab or Jupyter Notebook

By using uv to run Jupyter notebooks it's much easier to manage venv and package installations.

Follow [uv jupyter docummentation](https://docs.astral.sh/uv/guides/integration/jupyter/) for more details.

```bash
uv venv --seed
source .venv/bin/activate
uv pip install jupyterlab
.venv/bin/jupyter lab

```

**NOTE**: this environment should be used as `UV_PROJECT_ENVIRONMENT` env variable in MCP server (next step). Run in the same folder where Jupyter started.

```
echo $(pwd)/.venv

```

### Step2: Configure Claude Desctop Add this configuration to your Claude Desktop config file:

**PyPi package:**

```json
// ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "Jupyter-notebook-manager": {
      "command": "uv",
      "args": ["run", "--with", "mcp-server-jupyter", "mcp-server-jupyter"],
      "env": {
        "UV_PROJECT_ENVIRONMENT": "/path/to/venv_for_jupyter/.venv"
      }
    }
  }
}
```

**Git repo fork**

```json
// ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "Jupyter-notebook-manager": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/Users/inna/mcp-server-jupyter/src/mcp_server_jupyter",
        "mcp-server-jupyter"
      ],
      "env": {
        "UV_PROJECT_ENVIRONMENT": "/path/to/venv_for_jupyter/.venv"
      }
    }
  }
}
```

### Step 3: Open Notebook & Claude Chat

Open or create a notebook in JupyterLab/Jupyter Notebook

Get the full path to your notebook:

- In JupyterLab: Right-click on the notebook in the file browser → "Copy Path"
- In Jupyter Notebook: Copy the path from the URL (modify to full system path)

In Claude Desktop chat:

- Always use the full path to the notebook when calling tools
- Example: `/Users/username/projects/my_notebook.ipynb`

**Important Notes:**

- After any modifications through Claude (add_cell, edit_cell):
  - Reload the notebook page in JupyterLab/Jupyter Notebook
  - Current version does not support automatic reload
- Keep JupyterLab/Jupyter Notebook instance running while working with Claude

## License

This project is licensed under the MIT License. See the LICENSE file for details.

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [ihrpr](https://github.com/ihrpr)
- **Source:** [ihrpr/mcp-server-jupyter](https://github.com/ihrpr/mcp-server-jupyter)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-ihrpr-mcp-server-jupyter
- Seller: https://agentstack.voostack.com/s/ihrpr
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
