leave_chat
Exit a specific chat room in MCP Chat by providing the room ID and client identifier. Confirms the success of leaving the room.
Instructions
Leave the current chat room.
Args: room_id: The ID of the chat room to leave client_id: Your client identifier (from enter_queue)
Returns: Success status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
client_id | Yes | ||
room_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"client_id": {
"title": "Client Id",
"type": "string"
},
"room_id": {
"title": "Room Id",
"type": "string"
}
},
"required": [
"room_id",
"client_id"
],
"type": "object"
}