We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/datYori/chesscom-mxcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
analyze_game_results.yml•1.29 KiB
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