create_board
Generate a custom Minesweeper board by specifying dimensions and mine count to create a unique game challenge using the MCP Server.
Instructions
Create a new Minesweeper board with specified dimensions and mine count
Input Schema
Name | Required | Description | Default |
---|---|---|---|
height | Yes | Height of the board (number of rows) | |
id | Yes | Unique identifier for the board | |
mineCount | Yes | Number of mines to place on the board | |
width | Yes | Width of the board (number of columns) |
Input Schema (JSON Schema)
{
"properties": {
"height": {
"description": "Height of the board (number of rows)",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"id": {
"description": "Unique identifier for the board",
"type": "string"
},
"mineCount": {
"description": "Number of mines to place on the board",
"minimum": 0,
"type": "number"
},
"width": {
"description": "Width of the board (number of columns)",
"maximum": 50,
"minimum": 1,
"type": "number"
}
},
"required": [
"id",
"width",
"height",
"mineCount"
],
"type": "object"
}