pyproject.toml•579 B
[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
build-backend = "uv_build"
[project]
name = "solvedac-server"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"anthropic>=0.71.0",
"fastmcp>=2.12.5",
"openai>=2.5.0",
"python-dotenv>=1.1.1",
"smithery>=0.4.2",
]
[project.scripts]
dev = "smithery.cli.dev:main"
playground = "smithery.cli.playground:main"
# Points to your server function
[tool.smithery]
server = "solvedac_server.server:create_server"