We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce6aee6 commit ec6cd6fCopy full SHA for ec6cd6f
mcpgateway/plugins/framework/models.py
@@ -406,7 +406,7 @@ class MCPServerConfig(BaseModel):
406
tls (Optional[MCPServerTLSConfig]): Server-side TLS configuration.
407
"""
408
409
- host: str = Field(default="0.0.0.0", description="Server host to bind to")
+ host: str = Field(default="127.0.0.1", description="Server host to bind to")
410
port: int = Field(default=8000, description="Server port to bind to")
411
tls: Optional[MCPServerTLSConfig] = Field(default=None, description="Server-side TLS configuration")
412
0 commit comments