- Gurddy
Gurddy
What is Gurddy?
Gurddy is a Model Context Protocol (MCP) server designed to provide solutions for Constraint Satisfaction Problems (CSP) and Linear Programming (LP). It utilizes the gurddy optimization library to solve a variety of classic problems through two MCP transports: stdio for IDE integration and HTTP/SSE for web clients.
How to use Gurddy?
To use Gurddy, you can either install it via pip for IDE integration or run it using Docker for web access. For IDE integration, use pip install gurddy_mcp and configure it in your IDE. For HTTP access, run docker run -p 8080:8080 gurddy-mcp.
Key features of Gurddy?
- CSP Problem Solving: Includes solutions for N-Queens, Graph Coloring, Sudoku, and more.
- LP/Optimization Problems: Supports Linear Programming and Mixed Integer Programming.
- Minimax/Game Theory: Solves two-player games and finds optimal strategies.
- MCP Protocol Support: Offers both stdio and HTTP/SSE transports for flexibility.
Use cases of Gurddy?
- Solving complex scheduling problems.
- Optimizing resource allocation in production planning.
- Analyzing game strategies in competitive scenarios.
FAQ from Gurddy?
- Can Gurddy solve all types of CSP and LP problems?
Yes, Gurddy is designed to handle a wide range of CSP and LP problems.
- Is Gurddy free to use?
Yes, Gurddy is open-source and free to use.
- How can I deploy Gurddy?
You can deploy Gurddy using Docker or install it locally via pip.
Server Config
{
"mcpServers": {
"gurddy": {
"command": "uvx",
"args": [
"gurddy-mcp@latest"
],
"env": {},
"disabled": false,
"autoApprove": [
"run_example",
"info",
"install",
"solve_n_queens",
"solve_sudoku",
"solve_graph_coloring",
"solve_map_coloring",
"solve_lp",
"solve_production_planning"
]
}
}
}