reveal_cell
Uncover a specific cell on a Minesweeper game board using the board ID and coordinates. This tool facilitates gameplay by revealing cell content through the Minesweeper MCP Server.
Instructions
Reveal a cell on the Minesweeper board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | ID of the board | |
x | Yes | X coordinate (column) of the cell to reveal | |
y | Yes | Y coordinate (row) of the cell to reveal |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "ID of the board",
"type": "string"
},
"x": {
"description": "X coordinate (column) of the cell to reveal",
"minimum": 0,
"type": "number"
},
"y": {
"description": "Y coordinate (row) of the cell to reveal",
"minimum": 0,
"type": "number"
}
},
"required": [
"boardId",
"x",
"y"
],
"type": "object"
}