exit-room
Exit a virtual room and release associated resources using the specified room ID. Ensures proper cleanup in the Room MCP server for peer-to-peer collaboration.
Instructions
exit a room and clean up resources
Input Schema
Name | Required | Description | Default |
---|---|---|---|
roomId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"roomId": {
"type": "string"
}
},
"required": [
"roomId"
],
"type": "object"
}