[project]
name = "mcp-materials-server"
version = "0.1.0"
description = "MCP Server for Materials Science Databases (Materials Project, AFLOW)"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Hesham Salama" }]
requires-python = ">=3.11"
keywords = ["mcp", "materials-science", "materials-project", "api", "claude"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"mcp>=1.9.0",
"mp-api>=0.45.0",
"httpx>=0.28.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.8.0",
]
[project.scripts]
mcp-materials = "mcp_materials.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_materials"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]