solve-sudoku-text
Input a Sudoku puzzle in text format to generate the solved solution effortlessly using the MCP server's dedicated solver tool.
Instructions
Solve a Sudoku puzzle from text input
Input Schema
Name | Required | Description | Default |
---|---|---|---|
puzzle | Yes | The Sudoku puzzle in text format |
Input Schema (JSON Schema)
{
"properties": {
"puzzle": {
"description": "The Sudoku puzzle in text format",
"type": "string"
}
},
"required": [
"puzzle"
],
"type": "object"
}