Lichess MCP

by karayaman
Verified

write_in_chat

Send messages in real-time to game chat rooms on Lichess, enabling communication with players or spectators during chess matches. Specify game ID, room type, and text to engage directly in the game environment.

Instructions

Write in the chat of a board game

Input Schema

NameRequiredDescriptionDefault
gameIdYesThe game ID
roomYesThe chat room
textYesThe 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" }
ID: x7iuw37s1v