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.
This commit is contained in:
m
2026-04-29 15:47:17 +02:00
parent 4a25f2ee0f
commit 93a90b0ffa

View File

@@ -2,7 +2,7 @@
"mcpServers": { "mcpServers": {
"supabase": { "supabase": {
"type": "http", "type": "http",
"url": "http://100.99.98.201:8000/mcp", "url": "https://ystudio.msbls.de/mcp",
"headers": { "headers": {
"Authorization": "Basic ${YOUPC_SUPABASE_AUTH}" "Authorization": "Basic ${YOUPC_SUPABASE_AUTH}"
} }