add-sudoku
Add a new Sudoku puzzle to the MCP server for storage and solving. Input the puzzle in text format along with a name for easy reference.
Instructions
Add a new Sudoku puzzle
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
puzzle | Yes | The Sudoku puzzle in text format |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"type": "string"
},
"puzzle": {
"description": "The Sudoku puzzle in text format",
"type": "string"
}
},
"required": [
"name",
"puzzle"
],
"type": "object"
}