search_users_by_phone
Locate user details stored in the User Info MCP Server by entering a phone number, enabling quick retrieval of associated information for efficient user management.
Instructions
Telefon numarasına göre kullanıcı ara
Input Schema
Name | Required | Description | Default |
---|---|---|---|
phone | Yes | Aranacak Telefon numarası |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"phone": {
"description": "Aranacak Telefon numarası",
"maxLength": 20,
"minLength": 10,
"type": "string"
}
},
"required": [
"phone"
],
"type": "object"
}