change_password
Update user password securely in the MCP JSON Database Server. Requires JWT token, old password, and new password for authentication and verification.
Instructions
Kullanıcı şifresini değiştirir
Input Schema
Name | Required | Description | Default |
---|---|---|---|
newPassword | Yes | Yeni şifre | |
oldPassword | Yes | Mevcut şifre | |
token | Yes | JWT token |
Input Schema (JSON Schema)
{
"properties": {
"newPassword": {
"description": "Yeni şifre",
"type": "string"
},
"oldPassword": {
"description": "Mevcut şifre",
"type": "string"
},
"token": {
"description": "JWT token",
"type": "string"
}
},
"required": [
"token",
"oldPassword",
"newPassword"
],
"type": "object"
}