write_in_chat
Send messages to chat rooms in Lichess chess games, enabling communication with players or spectators directly during gameplay.
Instructions
Write in the chat of a board game
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gameId | Yes | The game ID | |
room | Yes | The chat room | |
text | Yes | The message to send |
Input Schema (JSON Schema)
{
"properties": {
"gameId": {
"description": "The game ID",
"type": "string"
},
"room": {
"description": "The chat room",
"enum": [
"player",
"spectator"
],
"type": "string"
},
"text": {
"description": "The message to send",
"type": "string"
}
},
"required": [
"gameId",
"room",
"text"
],
"type": "object"
}