get_user_by_id
Retrieve specific user details by providing a unique user ID. This tool is part of the User Info MCP Server, designed for efficient user information management.
Instructions
ID'ye göre belirli bir kullanıcıyı getir
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Kullanıcının ID'si |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Kullanıcının ID'si",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"id"
],
"type": "object"
}