[project]
name = "scicomp-mcp-common"
version = "0.1.1"
description = "Shared infrastructure for MCP servers: GPU management, async tasks, config, serialization"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "Andy Brummer", email = "andy@example.com" }
]
keywords = ["mcp", "gpu", "cuda", "async", "model-context-protocol"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
"mcp>=1.0.0",
"kdl-py>=1.1.0",
"numpy>=1.26.0",
"pydantic>=2.5.0"
]
[project.optional-dependencies]
gpu = ["cupy-cuda12x>=13.0.0"]
[project.urls]
Homepage = "https://github.com/andylbrummer/math-mcp"
Documentation = "https://andylbrummer.github.io/math-mcp/"
Repository = "https://github.com/andylbrummer/math-mcp"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_common"]