The Minesweeper MCP Server is a specialized server built on the Model Context Protocol (MCP) framework, designed to allow AI agents to play the classic game of Minesweeper. It integrates seamlessly with the Minesweeper Game Server and provides a structured environment for AI agents to interact with the game.
Watch the full demo video at https://youtu.be/CXXMafVtlEQ.
Install dependencies and build the server:
shell
npm install
npm run build
Configure your MCP client to include the server. For Claude Desktop, update the claude_desktop_config.json
file:
json
{
"mcpServers": {
"mcp-server": {
"command": "node",
"args": ["C:\\path\\to\\repo\\minesweeper-mcp-server\\build\\index.js"],
"env": {
"DEBUG": "*"
}
}
}
}
Restart Claude Desktop to apply the changes.
Start a new game of Minesweeper. Try your best to keep playing until you have flagged all mines. Remember that the coordinates are 0-indexed.
Here are some highlights from an AI agent's gameplay:
Claude Desktop Homepage:
New Tools in Claude Desktop:
The Minesweeper MCP Server is an open-source project designed to demonstrate the integration of AI agents with classic games using the MCP framework. It has garnered 104 stars and 4 forks on GitHub.
This project is open-source and available under the MIT License.