From 93a90b0ffaa26d8c0d01a81745adaef518da1d86 Mon Sep 17 00:00:00 2001 From: m Date: Wed, 29 Apr 2026 15:47:17 +0200 Subject: [PATCH] fix(.mcp.json): point supabase MCP at youpc Kong (paliad's actual DB) Was hitting msupabase-kong (port 8000 on mlake) which serves the flexsiebels/msbls Supabase. Paliad lives on youpc Supabase, exposed via Traefik at ystudio.msbls.de. Verified: query 'SELECT count(*) FROM paliad.users' returns 31 (matches live DB) instead of 0 (msbls has the schema but no rows). Auth header reuses YOUPC_SUPABASE_AUTH which is already in dotenv. Effective on next Claude Code session start. --- .mcp.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mcp.json b/.mcp.json index e8fb37a..9feaa52 100644 --- a/.mcp.json +++ b/.mcp.json @@ -2,7 +2,7 @@ "mcpServers": { "supabase": { "type": "http", - "url": "http://100.99.98.201:8000/mcp", + "url": "https://ystudio.msbls.de/mcp", "headers": { "Authorization": "Basic ${YOUPC_SUPABASE_AUTH}" }