Metadata-Version: 2.4
Name: ajlab
Version: 0.1.6
Summary: Agent ready JupyterLab
Project-URL: Homepage, https://github.com/jtpio/ajlab
Project-URL: Repository, https://github.com/jtpio/ajlab
Project-URL: Issues, https://github.com/jtpio/ajlab/issues
Author: Jeremy Tuloup
License-Expression: BSD-3-Clause
License-File: LICENSE
Keywords: agent,ai,jupyter,jupyterlab
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Jupyter
Classifier: Framework :: Jupyter :: JupyterLab
Classifier: Framework :: Jupyter :: JupyterLab :: 4
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.10
Requires-Dist: jupyter-docprovider>=2.4.0
Requires-Dist: jupyter-server-mcp
Requires-Dist: jupyter-server-ydoc>=2.4.0
Requires-Dist: jupyterlab-commands-toolkit
Requires-Dist: jupyterlab>=4.6.0a5
Description-Content-Type: text/markdown

# ajlab

Agent-ready JupyterLab.

![](./screenshot.png)

`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.0a5`
- `jupyter-docprovider >=2.4.0a0` and `jupyter-server-ydoc >=2.4.0a0`
- `jupyter-server-mcp`
- `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 exposes an
MCP endpoint (default `http://localhost:3001/mcp`) that any MCP client can
connect to.

For example, to wire it up to Claude Code:

```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
