From 39939b96219e21c66199f4dfa7bedae416d7aa5f Mon Sep 17 00:00:00 2001 From: Gilles Soulier Date: Thu, 28 May 2026 10:05:52 +0200 Subject: [PATCH] =?UTF-8?q?fix(mcp):=20streamable=5Fhttp=5Fpath=3D/=20pour?= =?UTF-8?q?=20mount=20FastAPI=20=C3=A0=20/mcp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/api/mcp_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/api/mcp_server.py b/backend/app/api/mcp_server.py index c8bcdeb..2ab8f65 100644 --- a/backend/app/api/mcp_server.py +++ b/backend/app/api/mcp_server.py @@ -15,7 +15,7 @@ from app.models.shopping import ShoppingList, ListItem, Product _VALID_STATUSES = {"pending", "done", "cancelled"} _VALID_PRIORITIES = {"low", "medium", "high"} -mcp = FastMCP("HomeHub", stateless_http=True) +mcp = FastMCP("HomeHub", stateless_http=True, streamable_http_path="/") def _serialize(obj):