npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-turtle-noir

v1.2.0

Published

The official MCP server for Turtle Noir - The lateral thinking puzzle game. Test your deductive reasoning against a strict AI host.

Downloads

25

Readme

mcp-turtle-noir

Turtle Soup(海龟汤)MCP 服务端。

这个包是 Turtle Noir 后端 API 的一层轻量 MCP 封装,当前采用 stdio 传输。

首页 | English README | 日本語

功能

  • start_session:开始一局新题
  • ask_question:针对当前会话提问并获取结构化判定结果
  • give_up_and_reveal:放弃并揭晓(受后端揭晓策略限制)
  • 通过 language 支持多语言 MCP 输出(zh-CNen-USja-JP
  • 正常流程中汤底只保留在后端,不下发给 MCP 客户端

传输方式

  • 支持:stdio
  • 本包未包含:SSE/HTTP MCP 传输实现

环境要求

  • Node.js 18+

安装与运行

npx -y mcp-turtle-noir

MCP 客户端配置

{
  "mcpServers": {
    "turtle-noir": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-turtle-noir"
      ]
    }
  }
}

带环境变量的示例:

{
  "mcpServers": {
    "turtle-noir": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-turtle-noir"
      ],
      "env": {
        "TURTLE_NOIR_API_BASE_URL": "https://turtlenoir.com/api/mcp",
        "TURTLE_NOIR_API_TIMEOUT_MS": "10000",
        "TURTLE_NOIR_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

工具说明

1) start_session

输入(全可选):

{
  "region": "US",
  "keyword": "island",
  "language": "en-US"
}

输出:

{
  "session_id": "...",
  "puzzle_id": "...",
  "title": "...",
  "content": "...",
  "language": "en-US",
  "instruction": "...",
  "translation_instruction": "..."
}

2) ask_question

输入:

{
  "session_id": "...",
  "question": "...",
  "language": "en-US"
}

输出:

{
  "session_id": "...",
  "language": "en-US",
  "answer_key": "irrelevant",
  "answer": "Irrelevant",
  "answer_original": "...",
  "short_reason": "...",
  "solved": false,
  "progress": 35,
  "translation_instruction": "..."
}

3) give_up_and_reveal

输入:

{
  "session_id": "...",
  "language": "en-US"
}

输出:

{
  "session_id": "...",
  "language": "en-US",
  "title": "...",
  "solution": "...",
  "cta_url": "https://turtlenoir.com",
  "cta_text": "...",
  "translation_instruction": "..."
}

说明:当进度低于阈值时(例如 progress < 60),后端可能拒绝揭晓。

环境变量

  • TURTLE_NOIR_API_BASE_URL(默认:https://turtlenoir.com/api/mcp
  • TURTLE_NOIR_API_TIMEOUT_MS(默认:10000
  • TURTLE_NOIR_API_KEY(可选,Bearer Token)

本地开发

npm install
npm run build
node dist/index.js

快速开始

QUICKSTART.md

许可证

MIT,见 LICENSE

关于与致谢