change_password
Update a user-based license password securely by providing the username, current password, and new password for the LicenseSpring MCP Server.
Instructions
Change password for a user-based license
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_password | Yes | ||
password | Yes | ||
username | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"new_password": {
"minLength": 1,
"type": "string"
},
"password": {
"minLength": 1,
"type": "string"
},
"username": {
"minLength": 1,
"type": "string"
}
},
"required": [
"username",
"password",
"new_password"
],
"type": "object"
}