analyze_game_results.ymlā¢1.32 kB
mxcp: 1
tool:
name: analyze_game_results
description: Analyze win/loss/draw patterns for a player by time control and color
language: sql
source:
file: ../sql/analyze_game_results.sql
parameters:
- name: username
type: string
description: The Chess.com username
pattern: "^[a-zA-Z0-9_-]+$"
- name: start_year
type: integer
description: Start year for analysis
default: 2023
minimum: 2007
- name: start_month
type: integer
description: Start month for analysis
default: 1
minimum: 1
maximum: 12
return:
type: array
description: Game results by time control and color
items:
type: object
properties:
time_class:
type: string
description: Time control type (blitz, rapid, bullet, daily)
color:
type: string
description: Piece color played
total_games:
type: integer
description: Total games played
wins:
type: integer
description: Number of wins
losses:
type: integer
description: Number of losses
draws:
type: integer
description: Number of draws
win_rate:
type: number
description: Win percentage