[tool.poetry]
name = "stats-compass-mcp"
version = "0.2.9"
description = "MCP server exposing stats-compass-core tools to LLMs like ChatGPT, Claude, and Gemini"
authors = ["Olatunji Ogunbiyi <oogunbiyi21@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "stats_compass_mcp"}]
keywords = ["mcp", "llm", "data-science", "pandas", "ai-agents", "chatgpt", "claude"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.11"
stats-compass-core = {version = "0.1.25", extras = ["all"]}
# For local development, uncomment the line below and comment out the version line above:
# stats-compass-core = {path = "../stats-compass-core", develop = true, extras = ["all"]}
mcp = "^1.0.0"
fastmcp = "^2.14.2"
boto3 = "^1.42.25"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
pytest-asyncio = "^0.24.0"
ruff = "^0.8.0"
mypy = "^1.0.0"
[tool.poetry.scripts]
stats-compass-mcp = "stats_compass_mcp.cli:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.mypy]
python_version = "3.11"
strict = true