Skip to content

Commit 6a7b70a

Browse files
committed
fix: add back create_branch name default
1 parent 27e4459 commit 6a7b70a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/mcp-server-supabase/src/server.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,10 @@ export function createSupabaseMcpServer(options: SupabaseMcpServerOptions) {
508508
'Creates a development branch on a Supabase project. This will apply all migrations from the main project to a fresh branch database. Note that production data will not carry over. The branch will get its own project_id via the resulting project_ref. Use this ID to execute queries and migrations on the branch.',
509509
parameters: z.object({
510510
project_id: z.string(),
511-
name: z.string().describe('Name of the branch to create'),
511+
name: z
512+
.string()
513+
.default('develop')
514+
.describe('Name of the branch to create'),
512515
confirm_cost_id: z
513516
.string()
514517
.describe('The cost confirmation ID. Call `confirm_cost` first.'),

0 commit comments

Comments
 (0)