Haiguitang MCP Server
Related Servers
Alternatives to Haiguitang MCP Server
No user-submitted related servers found.
Related Servers
- AlicenseAqualityCmaintenanceAn MCP server that turns any LLM into an escape room player.10MIT
- AlicenseAqualityBmaintenanceMCP server for Turtle Soup lateral thinking puzzles. It enables starting puzzle sessions, asking questions, and revealing solutions via a thin layer over Turtle Noir backend APIs.377 npm1MIT
- AlicenseBqualityCmaintenanceAn MCP server that provides LLMs access to other LLMs412 npm78MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that enables AI agents to act as dynamic dungeon masters for text-based RPGs with dynamically generated rule systems and comprehensive game state management.11 npm10MIT
- AlicenseAqualityCmaintenanceAn MCP server that gives LLMs structured, verifiable memory by storing facts in a knowledge graph and enabling logic-based reasoning through natural dialogue.143MIT
- MIT
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: get_prompt explains game rules, get_puzzle retrieves a specific puzzle's content, and list_puzzles_tool shows all available puzzles. There is no overlap or ambiguity between these three functions.
Two tools follow a consistent verb_noun pattern (get_prompt, get_puzzle), but list_puzzles_tool deviates by adding '_tool' suffix unnecessarily. The naming is still readable and mostly predictable.
Three tools is appropriate for a simple puzzle game server, though slightly minimal. It covers core needs: understanding the game, browsing puzzles, and accessing content. One more tool for puzzle management might enhance completeness.
The tools cover basic puzzle retrieval and listing, but lack puzzle creation, updating, or deletion operations. For a game server, this is a notable gap, as agents cannot modify or add puzzles, limiting interactive use.