This MCP server allows you to play "Turtle Soup" (Haiguitang) riddle games with a large language model acting as the game host, letting you enjoy this creative deduction game on your own.
Before using this project, ensure you have Python and uv installed on your computer. Follow these steps to set up the server:
git clone https://github.com/wangyafu/haiguitangmcp/
cd haiguitangmcp
uv sync
After installation, you need to configure your MCP client to connect to the server.
Add the following to your VSCode configuration:
"mcp": {
"servers": {
"haiguitang-mcp": {
"type": "stdio",
"command": "uv",
"args": [
"--directory",
"E:\\haiguitangmcp\\haiguitang_mcp",
"run",
"server.py"
]
}
}
}
For Cherry Studio users, add this to your configuration:
"mcpServers": {
"haiguitang": {
"isActive": true,
"name": "海龟汤MCP服务器",
"description": "和用户玩海龟汤",
"registryUrl": "",
"command": "uv",
"args": [
"--directory",
"E:/haiguitangmcp/haiguitang_mcp",
"run",
"server.py"
]
}
}
Note: Replace "E:/haiguitangmcp/haiguitang_mcp"
with the actual path where your server.py
is located. Similar configuration methods apply to other MCP clients.
This project provides three tools:
get_prompt
: Obtain complete instructions for the Turtle Soup gameget_puzzle
: Get the full content of a specific puzzle (requires the puzzle title as parameter)list_puzzles_tool
: List all available puzzlesAdditionally, the project offers:
puzzles://{puzzle_title}
- Access information about specific puzzlesgame_rules
- Provides the rules for the Turtle Soup gameIn Turtle Soup (Haiguitang):
The server currently includes 35 puzzles. Based on ratings from the developer's Turtle Soup Simulator, here are some recommended puzzles to try:
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.