Mcp Server Jupyter — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Server Jupyter (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP server for managing and interacting with Jupyter notebooks programmatically.

The server provides six tools for notebook manipulation:
read_notebook_with_outputs: Read a notebook's content including cell outputsnotebook_path (string)read_notebook_source_only: Read notebook content without outputsnotebook_path (string)read_output_of_cell: Read output of a specific cellnotebook_path (string)cell_id (string)add_cell: Add new cell to notebooknotebook_path (string)source (string)cell_type (string): "code" or "markdown"position (integer): insertion index (-1 to append)edit_cell: Modify existing cell contentnotebook_path (string)cell_id (string): Unique ID of the cell to editsource (string)execute_cell: Execute a specific cell and return its outputnotebook_path (string)cell_id (string)By using uv to run Jupyter notebooks it's much easier to manage venv and package installations.
Follow uv jupyter docummentation for more details.
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
PyPi package:
// ~/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
// ~/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"
}
}
}
}Open or create a notebook in JupyterLab/Jupyter Notebook
Get the full path to your notebook:
In Claude Desktop chat:
/Users/username/projects/my_notebook.ipynbImportant Notes:
This project is licensed under the MIT License. See the LICENSE file for details.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.