[build-system]
requires = ["hatchling"]
build-backend = "hatchling.backends"
[project]
name = "servicetitan-mcp"
version = "0.1.0"
description = "AI-native MCP server for ServiceTitan — job management, customer lookup, scheduling, dispatching, and invoicing for home services contractors."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "ServiceTitan MCP Contributors" }]
keywords = ["mcp", "servicetitan", "home-services", "contractor", "ai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastmcp>=2.0.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"ruff>=0.1.0",
]
[project.scripts]
servicetitan-mcp = "servicetitan_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/servicetitan_mcp"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]