Skip to main content
Glama
pab1it0

Chess.com MCP Server

is_player_online

Verify if a Chess.com player is currently online by entering their username. This tool helps players and AI assistants track real-time activity on Chess.com.

Instructions

Check if a player is currently online on Chess.com

Input Schema

NameRequiredDescriptionDefault
usernameYes

Input Schema (JSON Schema)

{ "properties": { "username": { "title": "Username", "type": "string" } }, "required": [ "username" ], "title": "is_player_onlineArguments", "type": "object" }

Implementation Reference

  • The handler function for the 'is_player_online' MCP tool. Decorated with @mcp.tool for automatic registration and schema inference. Makes an API request to Chess.com's online status endpoint.
    @mcp.tool(description="Check if a player is currently online on Chess.com") async def is_player_online(username: str) -> Dict[str, Any]: """ Check if a player is currently online on Chess.com. Args: username: The Chess.com username Returns: Online status data """ logger.info("Checking player online status", username=username) return await make_api_request(f"player/{username}/is-online")
  • Shared utility function used by is_player_online (and other tools) to perform HTTP requests to the Chess.com API.
    async def make_api_request( endpoint: str, params: Optional[Dict[str, Any]] = None, accept_json: bool = True ) -> Union[Dict[str, Any], str]: """ Make a request to the Chess.com API. Args: endpoint: The API endpoint to request params: Optional query parameters accept_json: Whether to accept JSON response (True) or PGN (False) Returns: JSON response as dict or text response as string Raises: httpx.HTTPError: If the request fails """ url = f"{config.base_url}/{endpoint}" headers = { "accept": "application/json" if accept_json else "application/x-chess-pgn" } logger.debug( "Making API request", endpoint=endpoint, url=url, accept_json=accept_json, has_params=params is not None ) async with httpx.AsyncClient() as client: try: response = await client.get(url, headers=headers, params=params or {}) response.raise_for_status() if accept_json: result = response.json() logger.debug("API request successful", endpoint=endpoint, response_type="json") return result else: result = response.text logger.debug("API request successful", endpoint=endpoint, response_type="text") return result except httpx.HTTPError as e: logger.error( "API request failed", endpoint=endpoint, url=url, error=str(e), error_type=type(e).__name__ ) raise

Latest Blog Posts

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/pab1it0/chess-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server