From cb51ff7ba1264cd2fb6feb9de22a51b626750c76 Mon Sep 17 00:00:00 2001 From: Mathias Bergqvist Date: Fri, 8 May 2026 14:10:25 +0200 Subject: [PATCH] chore(mcp): switch MCP endpoints to HTTPS domain URLs Brain and supervisor now behind NPM with Let's Encrypt. Use canonical hostnames (brain-mcp.d-ma.be, supervisor-mcp.d-ma.be) over NodePorts so connections work across networks without Tailscale for DNS. Co-Authored-By: Claude Sonnet 4.6 --- .mcp.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.mcp.json b/.mcp.json index eec8ffe..8b5fddb 100644 --- a/.mcp.json +++ b/.mcp.json @@ -2,14 +2,17 @@ "mcpServers": { "supervisor": { "type": "http", - "url": "http://koala:30320/mcp", + "url": "https://supervisor-mcp.d-ma.be/mcp", "headers": { "Authorization": "Bearer ${SUPERVISOR_MCP_TOKEN}" } }, "brain": { "type": "http", - "url": "http://koala:30330/mcp" + "url": "https://brain-mcp.d-ma.be/mcp", + "headers": { + "Authorization": "Bearer ${BRAIN_MCP_TOKEN}" + } } } } -- 2.49.1