feat: remove .env parsing du to clashes with projects using .env

This commit is contained in:
Daniel Bauer
2025-06-30 13:12:46 +02:00
parent 35d304a6c4
commit 0fd86775ac
2 changed files with 1 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ Currently, none.
## Configuration
The MCP server can be configured using environment variables with the `MCP_CORDRA_` prefix or a `.env` file:
The MCP server can be configured using environment variables with the `MCP_CORDRA_` prefix:
- `MCP_CORDRA_BASE_URL` - Cordra server URL (default: `https://localhost:8443`)
- `MCP_CORDRA_USERNAME` - Username for authentication (optional)

View File

@@ -9,8 +9,6 @@ class CordraConfig(BaseSettings):
model_config = SettingsConfigDict(
env_prefix="MCP_CORDRA_",
env_file=".env",
env_file_encoding="utf-8",
case_sensitive=False,
)