Chess.com MCP Server
Standardized MCP server for accessing and analyzing Chess.com public data
Key Features
Use Cases
README
Chess.com MCP Server
A Model Context Protocol (MCP) server for Chess.com's Published Data API.
This provides access to Chess.com player data, game records, and other public information through standardized MCP interfaces, allowing AI assistants to search and analyze chess information.
https://github.com/user-attachments/assets/3b33361b-b604-465c-9f6a-3699b6907757
Features
- Access player profiles, stats, and game records
- Search games by date and player
- Check player online status
- Get information about clubs and titled players
- No authentication required (uses Chess.com's public API)
- Docker containerization support
- Provide interactive tools for AI assistants
The list of tools is configurable, so you can choose which tools you want to make available to the MCP client.
Usage
Docker (Recommended)
The easiest way to run chess-mcp with Claude Desktop is using Docker. If you don't have Docker installed, you can get it from Docker's official website.
Edit your Claude Desktop config file:
- Mac:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%/Claude/claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Then add the following configuration:
{
"mcpServers": {
"chess": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"pab1it0/chess-mcp"
]
}
}
}
Running with UV
Alternatively, you can run the server directly using UV. Edit your Claude Desktop config file (locations listed above) and add the server configuration:
{
"mcpServers": {
"chess": {
"command": "uv",
"args": [
"--directory",
"<full path to chess-mcp directory>",
"run",
"src/chess_mcp/main.py"
]
}
}
}
Note: if you see
Error: spawn uv ENOENTin Claude Desktop, you may need to specify the full path touvor set the environment variableNO_UV=1in the configuration.
Development
Contributions are welcome! Please open an issue or submit a pull request if you have any suggestions or improvements.
This project uses uv to manage dependencies. Install uv following the instructions for your platform:
curl -LsSf https://astral.sh/uv/install.sh | sh
You can then create a virtual environment and install the dependencies with:
uv venv
source .venv/bin/activate # On Unix/macOS
.venv\Scripts\activate # On Windows
uv pip install -e .
Testing
The project includes a test suite that ensures functionality and helps prevent regressions.
Run the tests with pytest:
# Install development dependencies
uv pip install -e ".[dev]"
# Run the tests
pytest
# Run with coverage report
pytest --cov=src --cov-report=term-missing
Available Tools
Player Information
get_player_profile- Get a player's profile from Chess.comget_player_stats- Get a player's stats from Chess.comis_player_online- Check if a player is currently online on Chess.comget_titled_players- Get a list of titled players from Chess.com
Games
get_player_current_games- Get a player's ongoing games on Chess.comget_player_games_by_month- Get a player's games for a specific month from Chess.comget_player_game_archives- Get a list of available monthly game archives for a player on Chess.comdownload_player_games_pgn- Download PGN files for all games in a specific month from Chess.com
Clubs
get_club_profile- Get information about a club on Chess.comget_club_members- Get members of a club on Chess.com
License
MIT
Star History
Repository Owner
User
Repository Details
Programming Languages
Tags
Join Our Newsletter
Stay updated with the latest AI tools, news, and offers by subscribing to our weekly newsletter.
Related MCPs
Discover similar Model Context Protocol servers
mcp-stockfish
A Model Context Protocol server that connects AI systems to the Stockfish chess engine.
mcp-stockfish provides a server implementing the Model Context Protocol (MCP) to enable seamless integration between AI models and the Stockfish chess engine. It supports multiple concurrent sessions, full UCI command support, and offers both stdio and HTTP server modes. Built for robust, concurrent usage, it handles session and command management, exposes a JSON-based API response, and offers Docker support for easy deployment.
- ⭐ 4
- MCP
- sonirico/mcp-stockfish
Tripadvisor MCP Server
Standardized MCP access to Tripadvisor travel data for AI assistants
Tripadvisor MCP Server provides Model Context Protocol (MCP) compliant access to Tripadvisor's Content API, enabling AI assistants to search, retrieve, and present travel-related information in a standardized way. It features endpoints for searching locations, accessing detailed information, reviews, and photos, as well as secure API key authentication. The project supports Docker containerization and interactive tools for customizable AI integration.
- ⭐ 47
- MCP
- pab1it0/tripadvisor-mcp
Shodan MCP Server
Query Shodan network intelligence and CVEDB via standardized MCP integration.
Shodan MCP Server provides an MCP-compliant interface to query the Shodan API and Shodan CVEDB for network intelligence, device discovery, and vulnerability data. It integrates with platforms like Claude Desktop, enabling structured, formatted results for seamless AI workflows. Key functionalities include IP reconnaissance, DNS operations, vulnerability lookups, and internet-connected device searches. Easy installation options are available via npm, Smithery, or from source.
- ⭐ 83
- MCP
- BurtTheCoder/mcp-shodan
Open-WebSearch MCP Server
Multi-engine web search MCP server without API keys
Open-WebSearch MCP Server is a Model Context Protocol (MCP) compliant server offering web search functionalities using multiple search engines without the need for API keys or authentication. It provides structured search results with titles, URLs, and descriptions, and enables fetching of article content from supported sources such as CSDN and GitHub. The server supports extensive configuration through environment variables, including proxy settings and search engine customization. Designed for flexibility, it operates in both HTTP and stdio modes, making it suitable for integration into larger systems.
- ⭐ 463
- MCP
- Aas-ee/open-webSearch
Cloudbet Sports MCP Server
Minimal MCP server for sports data and betting tool exposure via Cloudbet API.
Implements a minimal, single-file server adhering to the Model Context Protocol (MCP) for exposing sports data and betting tools using the Cloudbet public API. Designed for educational and demonstration purposes, it follows the MCP Server specification and enables users to list and call tools via JSON-RPC. Provides examples for listing available tools and invoking actions such as retrieving sports events and markets. Intended for quick experiments and integration scenarios.
- ⭐ 9
- MCP
- cloudbet/sports-mcp-server
MCP Tic-Tac-Toe
A Model Context Protocol server for playing and analyzing tic-tac-toe games through standardized tool interfaces.
MCP Tic-Tac-Toe is a server implementation that provides a complete set of MCP tools for playing, managing, and analyzing tic-tac-toe games. It supports interactions with AI assistants such as Claude, enabling features like creating multiple parallel sessions, making moves, providing strategic analysis, and managing game context. The server is designed for easy integration with clients through various transport methods, including stdio and SSE, and supports seamless AI-human collaboration.
- ⭐ 2
- MCP
- tomholford/mcp-tic-tac-toe
Didn't find tool you were looking for?