From a50a1815e0b602dda06c06041f6719f0ce068b1a Mon Sep 17 00:00:00 2001 From: DevContainer User Date: Sat, 21 Feb 2026 15:09:26 +0000 Subject: [PATCH] fix: correct Home Assistant MCP sidecar command for SSE mode The Home Assistant MCP was failing with 'fastmcp-sse.json not found' error. Updated command to use proper fastmcp arguments for SSE transport mode without requiring a configuration file. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- chart/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index c1afabf..4921ea2 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -151,7 +151,7 @@ spec: - name: homeassistant-mcp image: "{{ .Values.mcpSidecars.homeassistant.image.repository }}:{{ .Values.mcpSidecars.homeassistant.image.tag }}" imagePullPolicy: Always - command: ["fastmcp", "run", "fastmcp-sse.json"] + command: ["fastmcp", "run", "ha_mcp.main:app", "--transport", "sse", "--sse-server-host", "0.0.0.0", "--sse-server-port", "{{ .Values.mcpSidecars.homeassistant.port }}"] ports: - name: homeassistant containerPort: {{ .Values.mcpSidecars.homeassistant.port }}