finish
End a Rubik's Cube solving session by submitting the game ID. This tool ensures proper closure and tracking of progress within the Rubik's Cube MCP Server.
Instructions
Complete the Rubik's Cube game session
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| gameId | Yes | The game session ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"gameId": {
"description": "The game session ID",
"type": "string"
}
},
"required": [
"gameId"
],
"type": "object"
}