diff --git a/src/backend/base/langflow/api/v1/mcp.py b/src/backend/base/langflow/api/v1/mcp.py index 3ba0fc3bd..1fa1c7ce3 100644 --- a/src/backend/base/langflow/api/v1/mcp.py +++ b/src/backend/base/langflow/api/v1/mcp.py @@ -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("/")