Supabase Auth

create_project

Creates a new Supabase project. Always ask the user which organization to create the project in. The project can take a few minutes to initialize - use `get_project` to check the status.

Remote Supabase

Other tools also called create_project? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the project"
    },
    "region": {
      "enum": [
        "us-west-1",
        "us-east-1",
        "us-east-2",
        "ca-central-1",
        "eu-west-1",
        "eu-west-2",
        "eu-west-3",
        "eu-central-1",
        "eu-central-2",
        "eu-north-1",
        "ap-south-1",
        "ap-southeast-1",
        "ap-northeast-1",
        "ap-northeast-2",
        "ap-southeast-2",
        "sa-east-1"
      ],
      "type": "string",
      "description": "The region to create the project in."
    },
    "confirm_cost_id": {
      "type": "string",
      "description": "The cost confirmation ID. Call `confirm_cost` first."
    },
    "organization_id": {
      "type": "string"
    }
  }
}