From 46dc486cb40a03f5c8b00eb1f7587b643680e3f0 Mon Sep 17 00:00:00 2001 From: DevContainer User Date: Fri, 27 Feb 2026 11:41:31 +0000 Subject: [PATCH] fix: use mcp-helm hardcoded port 8012 and remove invalid -port arg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit mcp-helm does not support a -port flag — it always listens on 8012. The invalid argument caused the container to crashloop. Co-Authored-By: Claude Opus 4.6 --- .mcp.json | 2 +- CLAUDE.md | 2 +- chart/templates/deployment.yaml | 1 - chart/values.yaml | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.mcp.json b/.mcp.json index 3b640ab..4f628a9 100644 --- a/.mcp.json +++ b/.mcp.json @@ -21,7 +21,7 @@ }, "helm": { "type": "sse", - "url": "http://localhost:8088/sse" + "url": "http://localhost:8012/sse" } } } \ No newline at end of file diff --git a/CLAUDE.md b/CLAUDE.md index b836c65..c590db2 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -89,7 +89,7 @@ MCP (Model Context Protocol) servers run as sidecar containers in the pod, enabl |---------|-------|---------|------|----------|---------| | `kubernetes-mcp` | `quay.io/containers/kubernetes_mcp_server` | v0.0.57 | 8080 | `http://localhost:8080/sse` | Enabled | | `flux-mcp` | `ghcr.io/controlplaneio-fluxcd/flux-operator-mcp` | v0.41.1 | 8081 | `http://localhost:8081/sse` | Enabled | -| `helm-mcp` | `ghcr.io/zekker6/mcp-helm` | v1.3.1 | 8088 | `http://localhost:8088/sse` | Enabled | +| `helm-mcp` | `ghcr.io/zekker6/mcp-helm` | v1.3.1 | 8012 | `http://localhost:8012/sse` | Enabled | | `fetch-mcp` | `mcp/fetch` | latest | 8082 | `http://localhost:8082/sse` | Enabled | | `sequentialthinking-mcp` | `mcp/sequentialthinking` | latest | 8083 | `http://localhost:8083/sse` | Enabled | | `homeassistant-mcp` | `ghcr.io/homeassistant-ai/ha-mcp` | stable | 8087 | `http://localhost:8087/sse` | Disabled | diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index f99f024..823a049 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -184,7 +184,6 @@ spec: image: "{{ .Values.mcp.sidecars.helm.image.repository }}:{{ .Values.mcp.sidecars.helm.image.tag }}" args: - -mode=sse - - -port={{ .Values.mcp.sidecars.helm.port }} ports: - containerPort: {{ .Values.mcp.sidecars.helm.port }} name: helm-mcp diff --git a/chart/values.yaml b/chart/values.yaml index 8b479eb..d7ac070 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -130,7 +130,7 @@ mcp: image: repository: ghcr.io/zekker6/mcp-helm tag: v1.3.1 - port: 8088 + port: 8012 resources: requests: memory: "64Mi"