send_message
Initiate real-time conversations by sending messages in MCP Chat. Pair with wait_for_message
to maintain dynamic communication flow using room ID, message content, and client ID.
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 |