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.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
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