Supabase Auth
sb_create_project
Create a new Supabase project. Requires organization ID, region, and database password. Project creation takes a few minutes.
Remote node2flow/supabase
Other tools also called sb_create_project?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Project name"
},
"plan": {
"enum": [
"free",
"pro"
],
"type": "string",
"description": "Project plan (default: free)"
},
"region": {
"type": "string",
"description": "AWS region. Examples: us-east-1, eu-west-1, ap-southeast-1"
},
"_fields": {
"type": "string",
"description": "Comma-separated list of fields to include in the response"
},
"db_pass": {
"type": "string",
"description": "Database password (min 8 chars)"
},
"organization_id": {
"type": "string",
"description": "Organization ID (from sb_list_projects or dashboard)"
}
}
}