list_users
Retrieve a list of all users with proper JWT authentication in the MCP JSON Database Server to streamline user management and access control.
Instructions
Tüm kullanıcıları listeler (Yetki gerekli)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
token | Yes | JWT token (yetki kontrolü için) |
Input Schema (JSON Schema)
{
"properties": {
"token": {
"description": "JWT token (yetki kontrolü için)",
"type": "string"
}
},
"required": [
"token"
],
"type": "object"
}