download_player_games_pgn
Retrieve PGN files of a player's chess games for a specific month from Chess.com, enabling analysis and review of game history.
Instructions
Download PGN files for all games in a specific month from Chess.com
Input Schema
Name | Required | Description | Default |
---|---|---|---|
month | Yes | ||
username | Yes | ||
year | Yes |
Input Schema (JSON Schema)
{
"properties": {
"month": {
"title": "Month",
"type": "integer"
},
"username": {
"title": "Username",
"type": "string"
},
"year": {
"title": "Year",
"type": "integer"
}
},
"required": [
"username",
"year",
"month"
],
"title": "download_player_games_pgnArguments",
"type": "object"
}