[project]
name = "jupyter-collaboration-mcp"
version = "0.1.0"
description = "MCP server for Jupyter Collaboration features"
readme = "DESIGN.md"
license = { text = "MIT" }
authors = [{ name = "Jupyter Collaboration Team" }]
keywords = ["jupyter", "realtime", "collaboration", "mcp", "ai", "agentic"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = [
"jupyter-server>=2.0.0",
"jupyter-collaboration>=2.0.0",
"mcp>=1.0.0",
"pydantic>=2.0.0",
]
[project.entry-points."jupyter_serverextensions"]
jupyter_collaboration_mcp = "jupyter_collaboration_mcp:_jupyter_server_extension_points"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/jupyter/jupyter-collaboration-mcp"
Documentation = "https://jupyter-collaboration-mcp.readthedocs.io"
Repository = "https://github.com/jupyter/jupyter-collaboration-mcp"
Issues = "https://github.com/jupyter/jupyter-collaboration-mcp/issues"
[project.scripts]
jupyter-collaboration-mcp = "jupyter_collaboration_mcp.__main__:main"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling>=1.4.0"]
[tool.hatch.build.targets.wheel.shared-data]
"jupyter-config/jupyter_collaboration_mcp.json" = "etc/jupyter/jupyter_server_config.d/jupyter_collaboration_mcp.json"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
asyncio_mode = "auto"