You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
`uv tool install .` re-resolved dependencies from pyproject.toml's loose
constraints on every build, so a rebuild silently pulled mcp 2.x — which
dropped mcp.server.fastmcp — and the stdio server crashed on import,
breaking the claude.ai connection.
Switch to `uv sync --frozen` so the image installs the exact locked
versions and the build fails on a stale lock instead of re-resolving.
uv tool install has no way to consume uv.lock; sync uses a project venv,
so put /app/.venv/bin on PATH for the entry point.