We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcfc19d commit 29f62cbCopy full SHA for 29f62cb
backend/api/core/config.py
@@ -38,6 +38,14 @@ def checkpoint_conn_str(self) -> str:
38
langfuse_host: str = "https://cloud.langfuse.com"
39
40
environment: str = "development"
41
+ mcp_hostnames_csv: str = "mcp"
42
+
43
+ @computed_field
44
+ @property
45
+ def mcp_hostnames(self) -> list[str]:
46
+ return [
47
+ h.strip() for h in self.mcp_hostnames_csv.split(",") if h.strip()
48
+ ]
49
50
51
settings = Settings()
envs/backend.env
@@ -7,3 +7,4 @@ LANGFUSE_SECRET_KEY=sk-lf-
7
LANGFUSE_HOST=https://cloud.langfuse.com
8
9
ENVIRONMENT=production
10
+MCP_HOSTNAMES_CSV=mcp
0 commit comments