Supabase MCP Server enables Claude and other LLMs to interact with Supabase databases and Edge Functions through a standardized API. It provides tools for performing CRUD operations on Postgres tables and invoking Edge Functions with custom payloads, all secured by API key authentication. The implementation includes a complete Express server with database query builders, comprehensive error handling, and configuration management, making it particularly valuable for applications that need AI assistants to access or modify data in Supabase projects without requiring custom integration code.
Aún no hay reseñas. ¡Sé el primero en reseñar!
Inicia sesión para unirte a la conversación
Query data from a specified table. Parameters: table (string), select (optional string), query (optional object)
Insert data into a specified table. Parameters: table (string), data (object or array of objects)
Update data in a specified table. Parameters: table (string), data (object), query (object)
Delete data from a specified table based on filter conditions. Parameters: table (string), query (object)
List all tables in the database. Parameters: None