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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-supabase",
3
- "version": "0.2.3-alpha.0",
3
+ "version": "0.2.3-alpha.1",
4
4
  "type": "module",
5
5
  "description": "OpenCode plugin for Supabase integration with server and TUI components",
6
6
  "license": "Apache-2.0",
@@ -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/${encodeURIComponent(projectRef)}`);
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");