Skip to content

Commit 67aeae3

Browse files
committed
chore: cleanup unused code
1 parent 4a37062 commit 67aeae3

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# MCP Server Configuration
22
MCP_SERVER_NAME=mcp-production
3-
DEBUG=false
43
HOST=0.0.0.0
54
PORT=8000
65
TRANSPORT=sse

mcp_server/settings/config.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ class Config:
99
MCP_SERVER_VERSION: str = "0.1.0"
1010

1111
# Environment-configurable settings with defaults
12-
DEBUG: bool = os.getenv("DEBUG", "false").lower() == "true"
1312
HOST: str = os.getenv("HOST", "0.0.0.0")
1413
PORT: int = int(os.getenv("PORT", "8000"))
1514

@@ -34,8 +33,3 @@ class Config:
3433
def is_production(cls) -> bool:
3534
"""Helper method to check if running in production mode"""
3635
return os.getenv("ENVIRONMENT", "development").lower() == "production"
37-
38-
@classmethod
39-
def is_debug(cls) -> bool:
40-
"""Helper method to check debug status"""
41-
return cls.DEBUG

0 commit comments

Comments
 (0)