Self-Hosted Supabase MCP Server

delete_auth_user

Remove a user from auth.users by their UUID. Requires a service_role key and direct database connection, ensuring secure and controlled user deletion in self-hosted Supabase instances.

Instructions

Deletes a user from auth.users by their ID. Requires service_role key and direct DB connection.

Input Schema

NameRequiredDescriptionDefault
user_idYesThe UUID of the user to delete.

Input Schema (JSON Schema)

{ "properties": { "user_id": { "description": "The UUID of the user to delete.", "format": "uuid", "type": "string" } }, "required": [ "user_id" ], "type": "object" }
ID: kgziynf39e