Supabase

Supabase is an open-source Firebase alternative providing PostgreSQL database, authentication, and storage.

Prerequisites

Connect

conjra add supabase

You will be prompted for your Supabase access token (sbp_...).

MCP Tools

create_supabase_project

Create a new Supabase project.

ParameterTypeRequiredDescription
namestringYesHuman-readable project name
organizationIdstringNoSupabase organization ID
regionstringNoAWS region (e.g., us-east-1)
dbPasswordstringYesPostgreSQL database password (min 8 chars)

Example: "use conjra to create a supabase project called my-app"

Returns: Project ID, database URL, anon key, service role key.

run_supabase_migration

Execute a SQL migration on a Supabase project.

ParameterTypeRequiredDescription
projectIdstringYesSupabase project reference ID
sqlstringYesSQL migration to execute
namestringYesDescriptive migration name

get_supabase_url_and_keys

Retrieve API URL, anon key, and service role key for a Supabase project.

ParameterTypeRequiredDescription
projectIdstringYesSupabase project reference ID

create_supabase_bucket

Create a new storage bucket in a Supabase project.

ParameterTypeRequiredDescription
projectIdstringYesSupabase project reference ID
bucketIdstringYesUnique identifier (lowercase, no spaces)
publicbooleanNoPublicly accessible? (default false)
fileSizeLimitnumberNoMax file size in bytes
Edit this page on GitHub