get_users_status
Retrieve real-time status of up to 100 Lichess users, including network signal strength, ongoing game IDs, and game metadata, via the Lichess MCP server.
Instructions
Get real-time users status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | User IDs separated by commas. Up to 100 IDs. | |
withGameIds | No | Include IDs of ongoing games | |
withGameMetas | No | Include metadata of ongoing games | |
withSignal | No | Include network signal strength (1-4) |
Input Schema (JSON Schema)
{
"properties": {
"ids": {
"description": "User IDs separated by commas. Up to 100 IDs.",
"type": "string"
},
"withGameIds": {
"description": "Include IDs of ongoing games",
"type": "boolean"
},
"withGameMetas": {
"description": "Include metadata of ongoing games",
"type": "boolean"
},
"withSignal": {
"description": "Include network signal strength (1-4)",
"type": "boolean"
}
},
"required": [
"ids"
],
"type": "object"
}