From 48e1b5343e7cc329fee741d62929225d32d4014b Mon Sep 17 00:00:00 2001 From: Gilles Soulier Date: Mon, 25 May 2026 22:44:57 +0200 Subject: [PATCH] =?UTF-8?q?feat(mcp):=20d=C3=A9pendance=20mcp>=3D1.9=20+?= =?UTF-8?q?=20champ=20mcp=5Fapi=5Fkey=20dans=20Settings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/core/config.py | 1 + backend/requirements.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/backend/app/core/config.py b/backend/app/core/config.py index eee1633..6f9ad5a 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -10,6 +10,7 @@ class Settings(BaseSettings): data_dir: str = "/data" redis_url: str = "redis://redis:6379" cors_origins: str = "http://localhost:3000" + mcp_api_key: str = "" @property def cors_origins_list(self) -> list[str]: diff --git a/backend/requirements.txt b/backend/requirements.txt index 3ac3e3d..253d6cb 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -8,5 +8,6 @@ pillow==11.1.0 python-multipart==0.0.20 httpx==0.28.0 arq==0.26.1 +mcp>=1.9 pytest==8.3.4 pytest-asyncio==0.24.0