get_board
Retrieve the current state and visual layout of a Minesweeper game board using its unique board ID for tracking and analysis.
Instructions
Get the current state and visual representation of a Minesweeper board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | ID of the board to display |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "ID of the board to display",
"type": "string"
}
},
"required": [
"boardId"
],
"type": "object"
}