mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-25 09:13:43 +08:00
fix: Fixed typo in mcp host setup (#7423)
Update mcp.py -fix: holst name error,alter :holst->host
This commit is contained in:
@ -103,7 +103,7 @@ async def handle_list_resources():
|
||||
settings_service = get_settings_service()
|
||||
|
||||
# Build full URL from settings
|
||||
host = getattr(settings_service.settings, "holst", "localhost")
|
||||
host = getattr(settings_service.settings, "host", "localhost")
|
||||
port = getattr(settings_service.settings, "port", 3000)
|
||||
|
||||
base_url = f"http://{host}:{port}".rstrip("/")
|
||||
|
||||
Reference in New Issue
Block a user