Skip to content

Ft/packages #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ COPY jupyter_mcp_server/* jupyter_mcp_server/
RUN pip install -e .

RUN pip uninstall -y pycrdt datalayer_pycrdt
RUN pip install datalayer_pycrdt
RUN pip install datalayer_pycrdt==0.12.15

CMD ["python", "-m", "jupyter_mcp_server.server"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ Jupyter MCP Server is a [Model Context Protocol](https://modelcontextprotocol.io
Make sure you have the following installed. The collaboration package is needed as the modifications made on the notebook can be seen thanks to [Jupyter Real Time Collaboration](https://jupyterlab.readthedocs.io/en/stable/user/rtc.html).

```bash
pip install jupyterlab jupyter-collaboration ipykernel
pip install jupyterlab==4.4.1 jupyter-collaboration==4.0.2 ipykernel
pip uninstall -y pycrdt datalayer_pycrdt
pip install datalayer_pycrdt
pip install datalayer_pycrdt==0.12.15
```

Then, start JupyterLab with the following command.
Expand Down
2 changes: 1 addition & 1 deletion jupyter_mcp_server/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

"""Jupyter MCP Server."""

__version__ = "0.3.3"
__version__ = "0.3.4"
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"jupyter-kernel-client>=0.6.0",
"jupyter-nbmodel-client>=0.11.1",
"jupyter-kernel-client==0.6.0",
"jupyter-nbmodel-client==0.11.3",
"mcp[cli]>=1.2.1",
]

Expand Down Expand Up @@ -92,4 +92,4 @@ ignore = [

[tool.ruff.lint.per-file-ignores]
# S101 Use of `assert` detected
"jupyter_mcp_server/tests/*" = ["S101"]
"jupyter_mcp_server/tests/*" = ["S101"]
Loading