Bumps the runtime from 0.7.15 to 0.7.22 (last 0.7.x release). All five monkey-patched surfaces (MCPAgentClientSession.send_request/call_tool, MCPAggregator._execute_on_server/_create_session_factory/call_tool), ToolRunnerHooks, and both AnthropicConverter private methods patched by mantle_shims were verified unchanged in signature at 0.7.22. Adds claude-opus-4-8 and claude-fable-5 to MANTLE_WIRE_NAMES; both are natively known to fast-agent's ModelDatabase as of 0.7.17+ (1M context). 58/58 tests pass; server/patch modules import cleanly on 0.7.22. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
30 lines
600 B
TOML
30 lines
600 B
TOML
[project]
|
|
name = "pallas-mcp"
|
|
version = "0.6.0"
|
|
description = "FastAgent MCP Bridge — generic runtime for serving FastAgent agents over StreamableHTTP"
|
|
requires-python = ">=3.13.5"
|
|
dependencies = [
|
|
"fast-agent-mcp==0.7.22",
|
|
"httpx",
|
|
"prometheus-client",
|
|
"pyyaml",
|
|
"starlette",
|
|
"uvicorn",
|
|
]
|
|
|
|
[project.scripts]
|
|
pallas = "pallas.server:main"
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["pallas"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|