This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

requirements.horizon.txt: dependency file for hosted mcp builds

selecting pyproject.toml in horizon installs the project bare (uv pip
install ./ — no extras), so fastmcp stays at the builder's 2.x pin and
the code-mode import fails at fastmcp inspect time. this file installs
.[mcp], pulling fastmcp>=3.4.2 + monty into the image

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

+9
+9
requirements.horizon.txt
··· 1 + # dependency file for hosted mcp deployments (e.g. prefect horizon). 2 + # 3 + # horizon's builder preinstalls a pinned fastmcp and installs the project 4 + # via `uv pip install ./` when pointed at pyproject.toml — which never 5 + # installs extras, so the code-mode server's fastmcp>=3.4.2 + monty deps 6 + # go missing and `fastmcp inspect` fails at build time. selecting this 7 + # file instead installs the project WITH the mcp extra, upgrading fastmcp 8 + # in the image to what semble.mcp actually needs. 9 + .[mcp]