- Add /healthz endpoint returning LLM provider validation status - Add /metrics endpoint serving Prometheus metrics via prometheus_client - Replace all print() calls in health.py with proper logging module - Remove _PREFIX variable in favor of structured logger context
24 lines
496 B
TOML
24 lines
496 B
TOML
[project]
|
|
name = "pallas-mcp"
|
|
version = "0.1.0"
|
|
description = "FastAgent MCP Bridge — generic runtime for serving FastAgent agents over StreamableHTTP"
|
|
requires-python = ">=3.13.5"
|
|
dependencies = [
|
|
"fast-agent-mcp>=0.6.10",
|
|
"httpx",
|
|
"prometheus-client",
|
|
"pyyaml",
|
|
"starlette",
|
|
"uvicorn",
|
|
]
|
|
|
|
[project.scripts]
|
|
pallas = "pallas.server:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["pallas"]
|