[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "namechecker-mcp"
version = "1.0.0"
description = "MCP server for domain name availability checking"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{name = "NameChecker Team", email = "team@namechecker.dev"},
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
"starlette>=0.27.0",
"uvicorn>=0.23.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[tool.black]
line-length = 88
target-version = ['py39']
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.mypy]
python_version = "3.9"
strict = true
[project.scripts]
namechecker-mcp = "main:main"