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.
No reviews yet. Be the first to review!
Sign in to join the conversation
Query the specified table in the database. Parameters: table (string), select (optional string, default: '*'), query (optional object, filter conditions)
Insert data into the specified table. Parameters: table (string), data (object or array of objects)
Update data in the specified table. Parameters: table (string), data (object, key-value pairs), query (object, filter conditions for the update)
Delete data from the specified table. Parameters: table (string), query (object, filter conditions for deletion)
List all tables in the database. Parameters: None