opencode-supabase 0.2.3-alpha.0 → 0.2.3-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/server/tools.ts +1 -1
package/package.json
CHANGED
package/src/server/tools.ts
CHANGED
|
@@ -424,7 +424,7 @@ export async function ensureSupabaseToolAuth(
|
|
|
424
424
|
}
|
|
425
425
|
|
|
426
426
|
function createMcpSetupUrl(projectRef: string) {
|
|
427
|
-
const url = new URL(`https://supabase.com/dashboard/project/${
|
|
427
|
+
const url = new URL(`https://supabase.com/dashboard/project/${projectRef}`);
|
|
428
428
|
url.searchParams.set("showConnect", "true");
|
|
429
429
|
url.searchParams.set("connectTab", "mcp");
|
|
430
430
|
url.searchParams.set("mcpClient", "opencode");
|