Skip to main content

Join Room

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

WRITEwave.wave_join_room
  • Contract tier: agent_ready
  • Risk: write
  • Catalog version: 2026-07-12.1
  • Descriptor hash: eb4b9194eb0625ac736dad97d59151f7477a400ca257eb3c16150358e44391fa

Join a Wave room by ID or alias as the selected user or bot.

Request Body

{
"jsonrpc": "2.0",
"id": "wave-wave-join-room-example",
"method": "tools/call",
"params": {
"name": "wave.wave_join_room",
"arguments": {
"roomIdOrAlias": "roomIdOrAlias_123",
"viaServers": [],
"actor": "user"
}
}
}

Arguments Schema

{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"roomIdOrAlias",
"viaServers"
],
"properties": {
"actor": {
"enum": [
"user",
"bot"
],
"type": "string",
"description": "Wave messaging identity to use: user or bot."
},
"viaServers": {
"type": "array",
"items": {
"type": "string",
"description": "Matrix identifier."
},
"default": [],
"description": "Optional Matrix server names to use for room discovery."
},
"roomIdOrAlias": {
"type": "string",
"description": "Matrix room ID or room alias to join."
}
},
"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-join-room-example",
"method": "tools/call",
"params": {
"name": "wave.wave_join_room",
"arguments": {
"roomIdOrAlias": "roomIdOrAlias_123",
"viaServers": [],
"actor": "user"
}
}
}'

Example Responses

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