Haiguitangmcp MCP Server

欢迎你为本项目贡献更多的谜题。你可以在haiguitang_mcp/puzzles文件夹中加入新的谜题文件然后发起Pull Request。

Local serverstdioPython

What is the Haiguitangmcp MCP server?

Haiguitangmcp MCP server exists for a simple reason — assistants are far more useful when they can act on Haiguitangmcp directly instead of describing what you should do. 欢迎你为本项目贡献更多的谜题。你可以在haiguitang_mcp/puzzles文件夹中加入新的谜题文件然后发起Pull Request。.

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

What the assistant can call

Once Haiguitangmcp is connected, these are the calls the assistant has available:

  • get_prompt — 获取海龟汤游戏的完整玩法说明
  • get_puzzle — 获取一个特定谜题的完整内容,需要提供谜题标题作为参数
  • list_puzzles_tool — 列出所有可用的谜题列表
  • puzzles — //{puzzle_title}: 获取特定谜题的信息
  • game_rules — 提供海龟汤游戏规则的提示模板

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the haiguitangmcp mcp server does with a few real requests.

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Haiguitangmcp's toolset — get_prompt, get_puzzle, list_puzzles_tool and 2 more — is a fair guide to whether it matches your workflow. It is maintained by StevenFengLi; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Haiguitangmcp's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
get_prompt获取海龟汤游戏的完整玩法说明
get_puzzle获取一个特定谜题的完整内容,需要提供谜题标题作为参数
list_puzzles_tool列出所有可用的谜题列表
puzzles//{puzzle_title}: 获取特定谜题的信息
game_rules提供海龟汤游戏规则的提示模板

How to install the Haiguitangmcp MCP server

### 在cherry studio中进行配置

```json
"mcpServers": {
    
    "haiguitang": {
      "isActive": true,
      "name": "海龟汤MCP服务器",
      "description": "和用户玩海龟汤",
      "registryUrl": "",
      "command": "uv",
      "args": [
        "--directory",
        "E:/haiguitangmcp/haiguitang_mcp",
        "run",
        "server.py"
      ]
    },
   
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Haiguitangmcp to get prompt.
  • Use Haiguitangmcp to get puzzle.
  • Use Haiguitangmcp to list puzzles tool.

Frequently asked questions

It connects Haiguitangmcp to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (get_prompt, get_puzzle, list_puzzles_tool, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Haiguitangmcp directly.