smt-sudoku-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SMT_SUDOKU_MCP_HOST | No | Bind host, streamable-http only | 127.0.0.1 |
| SMT_SUDOKU_MCP_PORT | No | Bind port, streamable-http only | 8000 |
| SMT_SUDOKU_MCP_TRANSPORT | No | stdio or streamable-http | stdio |
| SMT_SUDOKU_MCP_ALLOWED_ORIGINS | No | Comma-separated browser origins to trust, streamable-http only |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| generate_sudoku_puzzleA | Generate a new, uniquely-solvable Sudoku puzzle at the given difficulty. |
| validate_partial_sudoku_solutionA | Check whether a partially-filled Sudoku grid is conflict-free and still completable. |
| validate_full_sudoku_solutionA | Check whether a fully-filled Sudoku grid is a correct solution. |
| solve_sudoku_puzzleA | Solve an unsolved Sudoku grid, or report why it cannot be solved. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clear, non-overlapping purpose: generating puzzles, validating partial solutions, validating complete solutions, and solving puzzles. There is no ambiguity about which tool to use for a given task.
All tool names follow a consistent verb_noun snake_case pattern. The two validation tools share the same verb and differ only by the qualifier 'partial' or 'full', which is intuitive and predictable.
Four tools is a well-scoped set for a Sudoku-specific server. Each tool addresses a distinct core operation without unnecessary bloat or redundancy.
The tool surface covers the full Sudoku workflow: puzzle generation, solving, and validation of both in-progress and completed grids. No significant missing operations exist for the stated domain.