Supabase Auth
create_branch
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.
Remote Supabase
Other tools also called create_branch?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"default": "develop",
"description": "Name of the branch to create"
},
"project_id": {
"type": "string"
},
"confirm_cost_id": {
"type": "string",
"description": "The cost confirmation ID. Call `confirm_cost` first."
}
}
}