get_auth_user
Retrieve user details, such as authentication data, from a self-hosted Supabase instance by specifying a user’s UUID. Simplify user management directly from MCP-compatible environments for efficient Supabase integration.
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"
}