Skip to main content

Admin Reset Password

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

DESTRUCTIVEwave.wave_admin_reset_password
  • Contract tier: agent_ready
  • Risk: destructive
  • Catalog version: 2026-07-12.1
  • Descriptor hash: 542debf2ed94f8a9852e6c34c28b2bfd99bb4539fddf185759715bd944378f81

Reset a Synapse user's password. Requires destructive confirmation.

Request Body

{
"jsonrpc": "2.0",
"id": "wave-wave-admin-reset-password-example",
"method": "tools/call",
"params": {
"name": "wave.wave_admin_reset_password",
"arguments": {
"userId": "userId_123",
"new_password": "new_password_example",
"logout_devices": false,
"confirm": false,
"confirm_phrase": "confirm_phrase_example"
}
}
}

Arguments Schema

{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"userId",
"new_password",
"logout_devices",
"confirm",
"confirm_phrase"
],
"properties": {
"userId": {
"type": "string",
"description": "Full Matrix user ID whose password will be reset."
},
"confirm": {
"type": "boolean",
"default": false,
"description": "Must be true to authorize the password reset."
},
"new_password": {
"type": "string",
"minLength": 8,
"description": "New password; sensitive input that is never logged or returned."
},
"confirm_phrase": {
"type": "string",
"default": "",
"description": "Must exactly equal \"WAVE ADMIN CONFIRM\" to authorize the password reset."
},
"logout_devices": {
"type": "boolean",
"default": true,
"description": "Invalidate the user's existing access tokens when true."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the Wave MCP operation completed successfully."
},
"data": {
"anyOf": [
{},
{
"type": "null"
}
],
"description": "Tool-specific Wave, Matrix, Synapse, or local navigation result."
},
"meta": {
"type": "object",
"description": "Safe execution and actor metadata without credential values.",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
"error": {
"anyOf": [
{
"type": "object",
"required": [
"code",
"message"
],
"properties": {
"code": {
"type": "string",
"description": "Stable machine-readable error classification."
},
"details": {
"description": "Optional safe error context without credentials or request bodies."
},
"message": {
"type": "string",
"description": "Safe actionable error message."
}
},
"additionalProperties": false
},
{
"type": "null"
}
],
"description": "Safe error details when ok is false."
}
},
"additionalProperties": false
}

Code Examples

curl -X POST 'https://portal.madpanda3d.com/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "wave-wave-admin-reset-password-example",
"method": "tools/call",
"params": {
"name": "wave.wave_admin_reset_password",
"arguments": {
"userId": "userId_123",
"new_password": "new_password_example",
"logout_devices": false,
"confirm": false,
"confirm_phrase": "confirm_phrase_example"
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool wave.wave_admin_reset_password executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}