delete_user
Remove a user from the MCP JSON Database Server by specifying their unique ID, enabling efficient user management and secure database operations.
Instructions
Kullanıcıyı siler
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Silinecek kullanıcının ID'si |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Silinecek kullanıcının ID'si",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}