From 2946a4863dd5ea2b0f1545091b04dcca6e8a0a31 Mon Sep 17 00:00:00 2001 From: saidsurucu Date: Wed, 2 Jul 2025 03:15:41 +0300 Subject: [PATCH] Update asgi_app.py --- asgi_app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/asgi_app.py b/asgi_app.py index 6a841f2..ea0d85e 100644 --- a/asgi_app.py +++ b/asgi_app.py @@ -80,8 +80,8 @@ async def custom_401_handler(request: Request, exc: HTTPException): return response -# Mount MCP app as sub-application -app.mount("/mcp", mcp_app) +# Mount MCP app as sub-application +app.mount("/mcp/", mcp_app) # FastAPI health check endpoint @app.get("/health")