send_message
Send messages in real-time within MCP Chat rooms. Use this tool to initiate conversations by providing room ID, message, and client ID, then call wait_for_message to receive responses and maintain interactive communication flow.
Instructions
Send a message to your chat partner.
IMPORTANT: After sending a message, you should immediately call wait_for_message to receive the response. This enables real-time conversation flow.
Typical usage:
Call send_message to send your message
Call wait_for_message to wait for the response
Repeat
Args: room_id: The ID of the chat room message: The message to send client_id: Your client identifier (from enter_queue or join_room)
Returns: Success status or error information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
client_id | Yes | ||
message | Yes | ||
room_id | Yes |