Skip to content

Commit 88b339a

Browse files
committed
ignore extra envs in mcp server
1 parent 77f0287 commit 88b339a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/autointent/server/mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class Settings(BaseSettings):
2121
"""Application settings loaded from environment variables."""
2222

23-
model_config = SettingsConfigDict(env_file=".env", env_prefix="AUTOINTENT_")
23+
model_config = SettingsConfigDict(env_file=".env", env_prefix="AUTOINTENT_", extra="ignore")
2424
path: str = Field(..., description="Path to the optimized pipeline assets")
2525
transport: Literal["stdio", "http"] = "stdio"
2626
host: str = "127.0.0.1"

0 commit comments

Comments
 (0)