delete_board
Remove a custom Minesweeper board by specifying its unique ID. This tool enables users to manage and delete boards efficiently within the Minesweeper MCP Server.
Instructions
Delete a Minesweeper board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | ID of the board to delete |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "ID of the board to delete",
"type": "string"
}
},
"required": [
"boardId"
],
"type": "object"
}