get_user_by_id
Retrieve user information by ID using a JWT token for authentication on the MCP JSON Database Server. Designed for secure user data access and management.
Instructions
ID'ye göre kullanıcı bilgilerini getirir (Yetki gerekli)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Kullanıcı ID'si | |
token | Yes | JWT token (yetki kontrolü için) |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Kullanıcı ID'si",
"type": "number"
},
"token": {
"description": "JWT token (yetki kontrolü için)",
"type": "string"
}
},
"required": [
"id",
"token"
],
"type": "object"
}