decline_challenge
Decline incoming chess challenges on Lichess by specifying a challenge ID and optional reason (e.g., 'later', 'tooFast', 'variant') using the MCP server interface.
Instructions
Decline an incoming challenge
Input Schema
Name | Required | Description | Default |
---|---|---|---|
challengeId | Yes | ID of the challenge to decline | |
reason | No | Reason for declining |
Input Schema (JSON Schema)
{
"properties": {
"challengeId": {
"description": "ID of the challenge to decline",
"type": "string"
},
"reason": {
"description": "Reason for declining",
"enum": [
"generic",
"later",
"tooFast",
"tooSlow",
"timeControl",
"rated",
"casual",
"standard",
"variant",
"noBot",
"onlyBot"
],
"type": "string"
}
},
"required": [
"challengeId"
],
"type": "object"
}