get_auth_user
Retrieve specific user details from the auth.users table by providing the user’s UUID. Enhances user management in self-hosted Supabase environments using MCP protocol for direct interaction.
Instructions
Retrieves details for a specific user from auth.users by their ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user_id | Yes | The UUID of the user to retrieve. |
Input Schema (JSON Schema)
{
"properties": {
"user_id": {
"description": "The UUID of the user to retrieve.",
"format": "uuid",
"type": "string"
}
},
"required": [
"user_id"
],
"type": "object"
}