Supabase

Supabase

Automate database operations with Supabase and emma

With emma's Supabase integration, you can directly interact with your Supabase database. Manage tables, query data, and perform CRUD operations through automated workflows.

Features

Supabase_Operator supports the following 9 tools:

Authentication

Authentication Method:API Key

Supabase uses API key authentication. Choose between Anon Key (read-only) or Service Role Key (full access).

CategoryTools
Read Operations5
Tool NameDescription
supabase_list_tablesGet a list of tables in the database
supabase_get_schemaGet the schema (structure) of a specific table
supabase_selectRetrieve data from a table (supports filtering, sorting, pagination)
supabase_countCount rows in a table (supports filtering)
supabase_rpcCall PostgreSQL RPC functions
Write Operations4
Tool NameDescription
supabase_insertInsert new rows into a table
supabase_updateUpdate rows matching a condition
supabase_upsertInsert a row, or update if it exists
supabase_deleteDelete rows matching a condition

Main Parameters

ParameterDescription
tableName of the target table
columnsColumns to select (array of column names)
filterFilter conditions for the query
orderSort order (column and direction)
limitMaximum number of rows to return
offsetNumber of rows to skip (for pagination)
dataData object for insert/update operations

API Key Types and Permissions

Supabase offers two types of API keys. The operations you can perform depend on which key you use.

Anon Key

A public key with Row Level Security (RLS) applied.

  • Read operations allowed
  • Access restricted by RLS policies
  • Cannot write/delete unless RLS allows

Service Role Key

A secret admin key that bypasses RLS.

  • Full access to all tables
  • Bypasses RLS for direct operations
  • Use only server-side, never expose publicly

Prerequisites

  • emma account
  • Supabase account
  • Supabase project with database
  • Supabase URL and anon/service key

Setup

Simply select Supabase_Operator in emma and configure your Supabase URL and API key to start using it immediately.

© 2026 Duzzle Inc. All rights reserved.