Chess MCP Server
Allows retrieving player profiles, player statistics, and daily puzzles from Chess.com.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Chess MCP ServerGet the daily chess puzzle"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Chess MCP Server
A Model Context Protocol (MCP) server that provides seamless access to Chess.com API data through AI assistants like Claude, ChatGPT, and others.
MCP Resources
Official Documentation: Model Context Protocol
GitHub Repository: modelcontextprotocol
Specification: MCP Specification
Related MCP server: MCP Chess Server
Project Architecture
This Chess MCP Server provides three main tools:
getPlayerProfile- Retrieve player information and statisticsgetPlayerStats- Get detailed player ratings and performance datagetDailyPuzzle- Access the daily chess puzzle
Quick Start
Prerequisites
Node.js 18.0.0 or higher
npm or yarn package manager
Installation
Clone the repository
git clone https://github.com/dipalosalvatore/chess-mcp-server.git cd chess-mcp-serverInstall dependencies
npm installBuild the project
npm run buildStart the server
npm start
Docker Support
Using Docker
Build the Docker image
docker build -t chess-mcp-server .Run the container
docker run -it chess-mcp-server
Docker Configuration for MCP Clients
When using Docker, update your MCP client configuration to use the Docker container:
Claude Desktop with Docker
{
"mcpServers": {
"chess": {
"command": "docker",
"args": ["run", "-i", "--rm", "chess-mcp-server"],
"env": {}
}
}
}MCP Configuration
For Claude Desktop
Open Claude Desktop settings
Navigate to "Servers" section
Add a new server with these settings:
{
"name": "Chess MCP Server",
"command": "node",
"args": ["/path/to/chess-mcp-server/dist/index.js"],
"env": {}
}For Other MCP Clients
Most MCP clients support similar configuration. The server communicates via stdin/stdout, so you'll need to specify:
Command:
nodeArguments:
[path-to-dist/index.js]Working Directory: Your project directory
Example Configuration Files
Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"chess": {
"command": "node",
"args": ["/Users/username/projects/chess-mcp-server/dist/index.js"],
"env": {}
}
}
}ChatGPT (if supported)
{
"servers": [
{
"name": "Chess Server",
"command": "node",
"args": ["dist/index.js"],
"cwd": "/path/to/chess-mcp-server"
}
]
}Available Tools
1. Get Player Profile
Retrieves comprehensive player information from Chess.com.
Tool Name: getPlayerProfile
Parameters:
username(string, required): Chess.com username
Example Usage:
Get the profile for player "magnuscarlsen"2. Get Player Stats
Retrieves detailed player statistics and ratings.
Tool Name: getPlayerStats
Parameters:
username(string, required): Chess.com username
Example Usage:
Get statistics for player "hikaru"3. Get Daily Puzzle
Retrieves the current daily puzzle from Chess.com.
Tool Name: getDailyPuzzle
Parameters: None
Example Usage:
Get today's chess puzzleDevelopment
Building from Source
# Install dependencies
npm install
# Type checking
npm run type-check
# Build the project
npm run build
Project Structure Details
Chess API Wrapper (src/chess/)
The chess API is organized into specialized classes:
PlayerApi- Player profiles, stats, and game historyPuzzleApi- Daily puzzles and random puzzlesCommunityApi- Clubs, tournaments, and teamsBaseChessApi- Common functionality and HTTP client setup
MCP Tools (src/tools/)
Each tool is implemented as a function that:
Validates input using Zod schemas
Calls the appropriate Chess.com API
Returns standardized MCP responses
Handles errors gracefully
Error Handling
The server provides comprehensive error handling:
Validation Errors (400) - Invalid input parameters
Not Found Errors (404) - Player or resource not found
Rate Limit Errors (429) - API rate limit exceeded
Server Errors (5xx) - Chess.com API issues
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Development Setup
Fork the repository
Create a feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
Chess.com for providing the API
Model Context Protocol for the MCP standard
Anthropic for Claude and MCP support
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/SalvatoreDiPalo/chess-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server