Jeremiah Lowin commited on
Commit
6cbbd70
·
1 Parent(s): 6cbe07e

default sse to 127.0.0.1

Browse files
Files changed (1) hide show
  1. src/fastmcp/settings.py +1 -1
src/fastmcp/settings.py CHANGED
@@ -42,7 +42,7 @@ class ServerSettings(BaseSettings):
42
  log_level: LOG_LEVEL = Field(default_factory=lambda: Settings().log_level)
43
 
44
  # HTTP settings
45
- host: str = "0.0.0.0"
46
  port: int = 8000
47
  sse_path: str = "/sse"
48
  message_path: str = "/messages/"
 
42
  log_level: LOG_LEVEL = Field(default_factory=lambda: Settings().log_level)
43
 
44
  # HTTP settings
45
+ host: str = "127.0.0.1"
46
  port: int = 8000
47
  sse_path: str = "/sse"
48
  message_path: str = "/messages/"