search_users_by_email
Retrieve user details by searching with a specific email address using this tool, part of the User Info MCP Server for managing user data efficiently.
Instructions
E-posta adresine göre kullanıcı ara
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | Aranacak kullanıcı e-posta adresi |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"description": "Aranacak kullanıcı e-posta adresi",
"format": "email",
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
}