search_users_by_name
Search for users by their name using this tool from the User Info MCP Server. Input a name to retrieve matching user data stored in JSON format for efficient information management.
Instructions
İsme göre kullanıcı ara
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Aranacak kullanıcı ismi |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Aranacak kullanıcı ismi",
"minLength": 1,
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}