https://github.com/jtpio/ajlab
Agent ready JupyterLab
https://github.com/jtpio/ajlab
Last synced: about 1 month ago
JSON representation
Agent ready JupyterLab
- Host: GitHub
- URL: https://github.com/jtpio/ajlab
- Owner: jtpio
- License: bsd-3-clause
- Created: 2026-04-27T20:05:35.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-06-04T13:43:42.000Z (about 2 months ago)
- Last Synced: 2026-06-04T15:16:37.444Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 566 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ajlab
Agent-ready JupyterLab.

`ajlab` is a small meta-package that installs JupyterLab plus a few extensions
useful for agent workflows, and ships some defaults under `etc/jupyter/labconfig`.
## What's included
Minimum versions (see [`pyproject.toml`](./pyproject.toml)):
- `jupyterlab >=4.6.0b1`
- `jupyter-docprovider >=3.0.0a0` and `jupyter-server-ydoc >=3.0.0a0`
- `jupyter-server-mcp >=0.3.0a0`
- `jupyterlab-commands-toolkit`
## Default settings
- Hidden files shown in the file browser.
## Install
```bash
pip install ajlab
```
## Run
Once installed, start JupyterLab with:
```bash
jupyter lab
```
## Configure agents
Agent connectivity is provided by [`jupyter-server-mcp`][mcp], which runs inside
JupyterLab and exposes an MCP endpoint (default port `3001`) that any MCP client
can connect to.
The recommended way to connect a client is the stdio proxy, which auto-discovers
the running Jupyter MCP server and bridges stdio to its HTTP endpoint. It keeps
working unchanged when several Jupyter servers run side by side or when the port
is assigned dynamically. To wire it up to Claude Code:
```bash
claude mcp add jupyter-mcp -- uvx --prerelease allow --from jupyter-server-mcp jupyter-server-mcp-proxy
```
> `jupyter-server-mcp` is currently a pre-release. `uvx` skips pre-releases by
> default, so pass `--prerelease allow` or it silently installs the older stable
> release and the proxy/server versions won't match.
Alternatively, for a single server on a fixed port, connect directly over HTTP:
```bash
claude mcp add --transport http jupyter-mcp http://localhost:3001/mcp
```
See the [`jupyter-server-mcp` README][mcp] for tool registration via
`jupyter_config.py` and snippets for other MCP clients.
[mcp]: https://github.com/jupyter-ai-contrib/jupyter-server-mcp
## License
BSD-3-Clause