Jupyter MCP Server is a Model Context Protocol server that lets AI agents connect to and manage Jupyter notebooks in real time. It supports notebooks running locally or on hosted platforms, and its catalogue add-ons provide commands and skills for working with those notebooks.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/datalayer/jupyter-mcp-server/code-reviewnpx skills add datalayer/jupyter-mcp-server --skill code-reviewgit clone --depth 1 https://github.com/datalayer/jupyter-mcp-serverWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/datalayer/jupyter-mcp-server/code-review)<a href="https://agentmods.dev/skills/datalayer/jupyter-mcp-server/code-review"><img src="https://agentmods.dev/badge/skills/datalayer/jupyter-mcp-server/code-review.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00062 | $0.01774 |
| Opus 5 | $0.00031 | $0.00887 |
| Sonnet 5 | $0.00012 | $0.00355 |
| Haiku 4.5 | $0.00006 | $0.00177 |
Grade A, and why
code-review scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 154 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Reviewing a change to Jupyter MCP Server
This server is what an agent talks to when it reads and runs somebody's notebooks. Most of what goes wrong here is quiet: a test that passes without exercising its subject, a tool that answers an empty list instead of an error, a page that documents a flag nothing reads. None of it fails loudly, and all of it has happened.
Review for those first. Ordinary bugs are usually caught by the suite.
Start here: does the test exercise its subject?
The most common defect in this repository is not broken code — it is a test that passes for a reason other than the one it claims. Two real examples:
test_an_expired_task_is_gone…calledstore.get()beforestore.list().get()deletes the expired record itself, so by the timelist()ran there was nothing left to sweep and the sweep never executed.list()was iterating a dictionary while popping from it — a guaranteedRuntimeError— and the test named after that path was green.tests/test_mcpb_version_sync.pynever ran at all. It importsscripts.sync_mcpb_version,scripts/had no__init__.py, and the module failed at collection. The suite was green and the version drift it guards was unguarded.
So for every new or changed test, ask:
- Would it fail if the behaviour were removed? If you cannot say yes, delete the assertion or strengthen it. Say so in the review.
- Does an earlier line already do the work? A setup call that cleans up, caches, or short-circuits leaves the code under test unreached.
- Does it assert a cell, or a substring of everything?
assert "no" in outputpasses on almost any English. Pull the row or the field apart. - Does it signal by raising inside a
try? Several functions here catchExceptiondeliberately — a test that raises to signal gets swallowed and asserts nothing. Record into a list and assert the list. - Does it set an environment variable that was already read at import?
config-style modules read once. Patch the attribute, not the environment.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 154 lines · 62 tokens per session scan A 2a80e33d9d7b
code-review is a skill published in the GitHub repository datalayer/jupyter-mcp-server (1,271 stars, last pushed yesterday), licensed BSD-3-Clause. It adds 62 tokens to every session and 1,774 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
incident-response-skill
A skill that uses object-style tool references with purpose descriptions and required flags, plus strict validation.
frontmcp-development
Use when building any FrontMCP server component other than a tool (for tools, use create-tool). Covers @Resource static resources and parameterized URI templates; @Prompt reusable prompts (RAG, multi-turn); @Provider singleton dependency-injection providers (database pools, API clients); @Agent autonomous LLM agents…
mcp-refactoring
Refactoring MCP Tools for Better LLM Integration and Usability.
ot-ref
Use when calling any OneTool pack tool via onetool/ot triggers or the MCP run tool — pack map with aliases, call syntax, kwarg-prefix and alias forgiveness, discovery, a greppable index of every command, recovery from disconnected servers, and large-result handling.
debug-optimize-lcp
Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…
unity-version-split
Split a C# file into Unity 6.5+ and pre-Unity 6.5 variants. Use when a file needs different implementations for different Unity versions due to API changes (e.g., EntityId vs int, GetEntityId vs GetInstanceID).