Skip to main content
Glama

chesscom-mxcp

chess_config.py810 B
""" Configuration for Chess MXCP server. """ # Cache TTL settings (in seconds) CACHE_TTL = { "player_profile": 3600, # 1 hour for player profiles "player_stats": 1800, # 30 minutes for stats "current_games": 300, # 5 minutes for current games "game_archives": 86400, # 24 hours for archives (rarely changes) "titled_players": 604800, # 7 days for titled players list "club_info": 3600, # 1 hour for club information } # API settings API_CONFIG = { "base_url": "https://api.chess.com/pub", "retry_attempts": 3, "retry_delay": 1.0, "rate_limit": { "requests_per_minute": 60, # Chess.com rate limit "burst_size": 10 } } # Audit settings AUDIT_CONFIG = { "enabled": True, "backend": "jsonl" }

MCP directory API

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