Documentation Index
Fetch the complete documentation index at: https://agnt.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
This is not the agntdata-provisioned workspace database. agntdata can provision a Supabase project for your workspace and expose it at
/v1/db/* — that’s a separate, managed surface. This connection talks to your own Supabase organization using a Personal Access Token you generate in the Supabase dashboard. Use it to manage projects that live outside agntdata.Overview
The Supabase connection proxies requests to the Supabase Management API athttps://api.supabase.com. Use it to enumerate projects, run SQL against a project’s primary database, list and inspect edge functions, read secret names, and list database branches.
- Base URL:
https://api.agntdata.dev/v1/connections/supabase/* - Supabase auth: agntdata injects
Authorization: Bearer <your_supabase_pat> - Credential: Supabase Personal Access Token (
sbp_...), account-wide scope.
Setup
Generate a Supabase Personal Access Token
In Supabase go to Account → Access tokens and create a PAT (
sbp_...).Paste it into agntdata
In the agntdata dashboard open Integrations, pick Supabase, and paste the PAT.
Examples
List projects you can see
Retrieve one project
Run a SQL query against a project
List edge functions
Supported operations
- Projects — list, retrieve
- Database — run SQL via the Management API
- Edge Functions — list, retrieve metadata
- Secrets — list names (values are never returned)
- Branches — list
When to use the workspace database instead
If you want a Supabase project managed by agntdata (provisioning, service-role key handling, row-level audit, SDK/MCP parity with the agent runtime), use the agntdata workspace database at/v1/db/* — no PAT required. See the /v1/db/* documentation for that surface.