solve-sudoku
Solve Sudoku puzzles by inputting the puzzle name into the MCP server. Designed to process and provide solutions for Sudoku challenges efficiently.
Instructions
Solve a Sudoku puzzle
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the puzzle to solve |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the puzzle to solve",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}