[{"name":"getHealth","description":"Health check\n\nCheck server health and status\n\nTags: health","inputSchema":{"type":"object","properties":{},"title":"getHealthParameters"}},{"name":"createGame","description":"Create new game\n\nCreate a new Minesweeper game with specified dimensions and bomb percentage\n\nTags: game","inputSchema":{"type":"object","properties":{"width":{"type":"number","title":"width","description":"Body parameter: width"},"height":{"type":"number","title":"height","description":"Body parameter: height"},"bombPercentage":{"type":"number","title":"bombPercentage","description":"Body parameter: bombPercentage"}},"required":["width","height","bombPercentage"],"title":"createGameParameters"}},{"name":"getGameState","description":"Get game state\n\nRetrieve the current state of a specific game\n\nTags: game","inputSchema":{"type":"object","properties":{"id":{"type":"string","title":"id","description":"Path parameter: id"}},"required":["id"],"title":"getGameStateParameters"}},{"name":"revealCell","description":"Reveal cell\n\nReveal a cell at the specified row and column position\n\nTags: game","inputSchema":{"type":"object","properties":{"id":{"type":"string","title":"id","description":"Path parameter: id"},"row":{"type":"number","title":"row","description":"Body parameter: row"},"col":{"type":"number","title":"col","description":"Body parameter: col"}},"required":["id","row","col"],"title":"revealCellParameters"}},{"name":"flagCell","description":"Flag cell\n\nFlag or unflag a cell at the specified position\n\nTags: game","inputSchema":{"type":"object","properties":{"id":{"type":"string","title":"id","description":"Path parameter: id"},"row":{"type":"number","title":"row","description":"Body parameter: row"},"col":{"type":"number","title":"col","description":"Body parameter: col"}},"required":["id","row","col"],"title":"flagCellParameters"}},{"name":"listGames","description":"List all games\n\nList all active game sessions (admin only)\n\nTags: admin","inputSchema":{"type":"object","properties":{},"title":"listGamesParameters"}},{"name":"executeCommand","description":"Execute command\n\nExecute text commands like 'reveal 3 4' or 'flag 2 5'\n\nTags: game","inputSchema":{"type":"object","properties":{"id":{"type":"string","title":"id","description":"Path parameter: id"},"command":{"type":"string","title":"command","description":"Body parameter: command"}},"required":["id","command"],"title":"executeCommandParameters"}},{"name":"quitGame","description":"Quit game\n\nEnd the current game session gracefully\n\nTags: game","inputSchema":{"type":"object","properties":{"id":{"type":"string","title":"id","description":"Path parameter: id"}},"required":["id"],"title":"quitGameParameters"}}]