Supabase MCP Server

create_project

Create a new Supabase project

Input Schema

NameRequiredDescriptionDefault
db_passYes
nameYes
organization_idYes
planNo
regionYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "db_pass": { "type": "string" }, "name": { "type": "string" }, "organization_id": { "type": "string" }, "plan": { "type": "string" }, "region": { "type": "string" } }, "required": [ "name", "organization_id", "region", "db_pass" ], "type": "object" }