Files
paliad/.mcp.json
m 93a90b0ffa 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.
2026-04-29 15:47:17 +02:00

21 lines
397 B
JSON

{
"mcpServers": {
"supabase": {
"type": "http",
"url": "https://ystudio.msbls.de/mcp",
"headers": {
"Authorization": "Basic ${YOUPC_SUPABASE_AUTH}"
}
},
"playwright": {
"command": "bunx",
"args": [
"@playwright/mcp@latest",
"--headless",
"--user-data-dir",
"/tmp/mai-playwright-profile"
]
}
}
}