accept_join_request
Approves a user's request to join a specified team on Lichess MCP, facilitating team management by processing teamId and userId inputs.
Instructions
Accept a join request for your team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
teamId | Yes | The team ID | |
userId | Yes | The user ID |
Input Schema (JSON Schema)
{
"properties": {
"teamId": {
"description": "The team ID",
"type": "string"
},
"userId": {
"description": "The user ID",
"type": "string"
}
},
"required": [
"teamId",
"userId"
],
"type": "object"
}