smt-sudoku-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@smt-sudoku-mcpGenerate a hard Sudoku puzzle"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
╭─╮╭┬╮╶┬╴ ╭─╮╷ ╷╶┬╮╭─╮╷╭ ╷ ╷
╰─╮│││ │ ╰─╮│ │ │││ │├┴╮│ │
╰─╯╵ ╵ ╵ ╰─╯╰─╯╶┴╯╰─╯╵ ╵╰─╯smt-sudoku-mcp
Now, your agents can play Sudoku confidently!
An MCP server that demonstrates the power of satisfiability modulo theories (SMT) solving, using Z3, through the classic constraint-satisfaction puzzle of Sudoku.
Sudoku maps cleanly onto SMT primitives: generating a puzzle means finding a model that satisfies the Sudoku constraints and then proving a reduced set of clues still has only one solution; validating a grid means checking those same constraints against given cell values; solving a puzzle means finding a model or proving none exists.
Tools
All four tools are stateless: every call takes and/or returns a complete grid explicitly, with no server-side session state.
A Sudoku grid is represented as {"rows": [[...9 ints...], ...9 rows...]}, where each cell is 1-9 for a given digit or 0 for an empty cell. Any tool result that names a specific cell (a conflict) reports row/col as 1-indexed, matching how Sudoku cells are conventionally described in text (row 1, column 1 is the top-left cell).
generate_sudoku_puzzle
Generates a new, uniquely-solvable Sudoku puzzle.
Input:
difficulty— one of"very easy","easy","medium","hard", or"very hard"(default"medium"), mapping to an approximate target clue count:63,51,42,30, and21respectively."very hard"'s target of21sits just above the proven minimum of 17 givens for any uniquely-solvable Sudoku puzzle, so in practice it commonly lands noticeably above 21 (e.g. mid-20s), since removal stops once no further cell can be cleared without breaking uniqueness.Output:
{"puzzle": <grid>, "difficulty": <str>, "givens": <int>}—givensis the actual number of filled cells, which may be slightly above the target if removing further cells would have broken uniqueness.
validate_partial_sudoku_solution
Checks whether a partially-filled grid is conflict-free and, if so, whether it can still be completed.
Input:
grid— a partial grid (0 for empty cells).Output:
{"conflicts": [<cell>, ...], "is_completable": <bool | null>, "empty_cells": [<cell>, ...], "has_conflicts": <bool>, "empty_cells_count": <int>}—is_completableisnullwhen conflicts are present, since completability is not a meaningful question until they are resolved.empty_cellslists every still-empty cell regardless ofhas_conflicts;empty_cells_countislen(empty_cells).
validate_full_sudoku_solution
Checks whether a fully-filled grid is a correct Sudoku solution.
Input:
grid— expected to have no empty cells.Output:
{"has_empty_cells": <bool>, "conflicts": [<cell>, ...], "is_valid": <bool>}.
solve_sudoku_puzzle
Solves an unsolved grid, or reports why it cannot be solved.
Input:
grid— a partial grid to solve (0 for empty cells).Output:
{"status": "satisfiable" | "conflicting_givens" | "unsatisfiable", "solution": <grid | null>, "conflicts": [<cell>, ...]}.conflictsis only populated whenstatusis"conflicting_givens"(two given cells directly violate a row/column/box rule);"unsatisfiable"means the givens are pairwise conflict-free but no completion exists.
Related MCP server: Gurddy MCP Server
Installation
Requires Python 3.13+. The package is published on PyPI.
The simplest way to run it is with uvx, which fetches the package into an ephemeral environment on first use and requires no separate install step:
uvx smt-sudoku-mcpAlternatively, install it with pip (or uv pip) and run the installed console script directly:
pip install smt-sudoku-mcp
smt-sudoku-mcpTo work on the source itself rather than the published package, see Development below.
Using it with an MCP client
This server speaks MCP over stdio by default, so any MCP client that can launch a subprocess can use it without further setup. Set SMT_SUDOKU_MCP_TRANSPORT=streamable-http instead if the client needs to reach a standalone HTTP service; see Configuration.
Claude Code
claude mcp add smt-sudoku -- uvx smt-sudoku-mcpClaude Desktop
Add an entry under Settings → Developer → Edit Config (claude_desktop_config.json):
{
"mcpServers": {
"smt-sudoku": {
"command": "uvx",
"args": ["smt-sudoku-mcp"]
}
}
}Other MCP clients and agent frameworks
Any client that accepts a raw MCP server definition — Cursor, Windsurf, VS Code, or a custom agent built on an MCP SDK — can use the same command/args pair: uvx and ["smt-sudoku-mcp"]. For streamable-http, run the server separately with SMT_SUDOKU_MCP_TRANSPORT=streamable-http uvx smt-sudoku-mcp and point the client at http://<host>:<port>/mcp rather than giving it a command to launch.
Once connected, an agent can call the four tools above as it would any other tool. For example, asking an agent to "generate a hard Sudoku puzzle, then solve it and check the solution" will chain generate_sudoku_puzzle, solve_sudoku_puzzle, and validate_full_sudoku_solution without further guidance, since each tool's description and schema are sufficient for the agent to plan the sequence itself.
Configuration
Environment variables, all optional:
Variable | Default | Description |
|
|
|
|
| Bind host, |
|
| Bind port, |
| (none) | Comma-separated browser origins to trust, |
Development
To run the server from a source checkout instead of the published package, use uv:
uv sync
uv run smt-sudoku-mcpSee AGENTS.md for architecture notes and the full set of development commands (just -l).
Contributing
Issues and pull requests are welcome.
License
MIT.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceMCP-ORTools integrates Google's OR-Tools constraint programming solver with Large Language Models through the MCP, enabling AI models to: Submit and validate constraint models Set model parameters Solve constraint satisfaction and optimization problems Retrieve and analyze solution21MIT
- AlicenseNot gradedqualityDmaintenanceEnables solving Constraint Satisfaction Problems (CSP) like N-Queens, graph coloring, and Sudoku, as well as Linear Programming optimization problems through both MCP tools and HTTP API endpoints.2MIT
- AlicenseNot gradedqualityNot gradedmaintenanceAn MCP server that enables Large Language Models to interactively create, edit, and solve constraint models using backends like MiniZinc, Z3, PySAT, and Clingo. It bridges natural language with symbolic reasoning for solving complex logical, SAT, SMT, and optimization problems.
- FlicenseAqualityDmaintenanceEnables solving constraint satisfaction problems, mathematical equations, and logic puzzles using the Z3 SMT solver through natural language.13
Related MCP Connectors
Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.
500+ deterministic tools for AI agents: math, conversion, validation, hashing, encoding, date/time.
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/anirbanbasu/smt-sudoku-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server