data
Supabase MCP, CLI, and Lua Integration for AI Agents
Supabase integration docs for AI agents: MCP gateway setup, Supabase CLI commands, Lua API reference, credentials, and function schemas.Supabase for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
supabase.supabase_get_current_user | Read read | 0 | Get the currently authenticated Supabase user profile information. |
supabase.supabase_list_projects | Read read | 0 | List all Supabase projects in the organization. Returns project IDs, names, and regions. |
supabase.supabase_get_project | Read read | 1 | Get details of a specific Supabase project by its reference ID. |
supabase.supabase_create_project | Write write | 6 | Create a Supabase project in an organization using the Management API. |
supabase.supabase_delete_project | Write write | 1 | Delete a Supabase project by project ref. |
supabase.supabase_list_organizations | Read read | 0 | List Supabase organizations visible to the authenticated account. |
supabase.supabase_get_organization | Read read | 1 | Get a Supabase organization by slug. |
supabase.supabase_list_organization_members | Read read | 1 | List members of a Supabase organization. |
supabase.supabase_list_organization_projects | Read read | 3 | List Supabase projects for an organization. |
supabase.supabase_get_project_api_keys | Read read | 1 | Get API keys for a Supabase project. |