Skip to main content

Admin Registration Tokens

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

DESTRUCTIVEwave.wave_admin_registration_tokens
  • Contract tier: agent_ready
  • Risk: destructive
  • Catalog version: 2026-07-12.1
  • Descriptor hash: 05145fcca5f240b47e2451627b7c35d7813005048075a6e79eb9390c1ddf6578

List, create, or delete Synapse registration tokens for Wave invite links.

Request Body

{
"jsonrpc": "2.0",
"id": "wave-wave-admin-registration-tokens-example",
"method": "tools/call",
"params": {
"name": "wave.wave_admin_registration_tokens",
"arguments": {
"action": "list",
"confirm": false,
"confirm_phrase": "confirm_phrase_example",
"token": "token_example",
"length": 1,
"expiry_time": 1,
"uses_allowed": 1
}
}
}

Arguments Schema

{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"action",
"confirm",
"confirm_phrase"
],
"properties": {
"token": {
"type": "string",
"description": "Registration token to delete; sensitive and required for action=delete."
},
"action": {
"enum": [
"list",
"create",
"delete"
],
"type": "string",
"description": "Registration-token operation to perform."
},
"length": {
"type": "integer",
"maximum": 9007199254740991,
"description": "Optional generated token length for action=create.",
"exclusiveMinimum": 0
},
"confirm": {
"type": "boolean",
"default": false,
"description": "Must be true for create or delete actions."
},
"expiry_time": {
"type": "integer",
"maximum": 9007199254740991,
"description": "Optional Unix timestamp in milliseconds when a new token expires.",
"exclusiveMinimum": 0
},
"uses_allowed": {
"type": "integer",
"maximum": 9007199254740991,
"description": "Maximum registrations allowed for a newly created token.",
"exclusiveMinimum": 0
},
"confirm_phrase": {
"type": "string",
"default": "",
"description": "Must exactly equal \"WAVE ADMIN CONFIRM\" for create or delete actions."
}
},
"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-registration-tokens-example",
"method": "tools/call",
"params": {
"name": "wave.wave_admin_registration_tokens",
"arguments": {
"action": "list",
"confirm": false,
"confirm_phrase": "confirm_phrase_example",
"token": "token_example",
"length": 1,
"expiry_time": 1,
"uses_allowed": 1
}
}
}'

Example Responses

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