[project]
name = "mcp-tabular"
version = "0.2.0"
description = "MCP server for tabular data analysis - describe datasets, detect anomalies, correlations, pivot tables, charts, time series, and more"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"pandas>=2.0.0",
"numpy>=1.24.0",
"scipy>=1.10.0",
"matplotlib>=3.7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.scripts]
mcp-tabular = "mcp_tabular.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_tabular"]