The Supabase MCP Server is a powerful tool designed to facilitate seamless integration between MCP-compatible applications and Supabase services. It provides comprehensive tools for interacting with Supabase databases, storage, and edge functions. This server acts as a bridge to enable database operations with rich querying capabilities, manage files and assets, invoke edge functions, and handle project and organization management. Additionally, it supports user authentication, management, and role-based access control. Built using TypeScript, the server offers a modular architecture with robust error handling and secure environment configuration management, making it an ideal choice for developers looking to leverage Supabase's capabilities in their MCP-compatible applications.
Create a new record in a table with support for returning specific fields. Parameters: table (string), data (Record<string, any>), returning (optional string[])
Read records with advanced filtering, joins, and field selection. Parameters: table (string), select (optional string[]), filter (optional Record<string, any>), joins (optional Array<{ type?: 'inner' | 'left' | 'right' | 'full'; table: string; on: string; }>)
Update records with filtering and returning capabilities. Parameters: table (string), data (Record<string, any>), filter (optional Record<string, any>), returning (optional string[])
Delete records with filtering and returning capabilities. Parameters: table (string), filter (optional Record<string, any>), returning (optional string[])
Upload files to Supabase Storage with configurable options. Parameters: bucket (string), path (string), file (File | Blob), options (optional { cacheControl?: string; contentType?: string; upsert?: boolean; })
Download files from Supabase Storage. Parameters: bucket (string), path (string)
Invoke Supabase Edge Functions with parameters and custom options. Parameters: function (string), params (optional Record<string, any>), options (optional { headers?: Record<string, string>; responseType?: 'json' | 'text' | 'arraybuffer'; })
List users with pagination support. Parameters: page (optional number), per_page (optional number)
Create a new user with metadata. Parameters: email (string), password (string), data (optional Record<string, any>)
Update user details. Parameters: user_id (string), email (optional string), password (optional string), data (optional Record<string, any>)
Delete a user. Parameters: user_id (string)
Assign a role to a user. Parameters: user_id (string), role (string)
Remove a role from a user. Parameters: user_id (string), role (string)
No reviews yet. Be the first to review!
Sign in to join the conversation
After downloading, you can run the MCP server in any client or IDE:
node path/to/downloaded/file.mjs