File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed
Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change 11# MCP Server Configuration
22MCP_SERVER_NAME = mcp-production
3- DEBUG = false
43HOST = 0.0.0.0
54PORT = 8000
65TRANSPORT = sse
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments