Back to MCP directory
publicPublicdnsLocal runtime

branch-thinking-mcp

基于分支思维的多线程思考导航MCP服务

article

README

🚀 分支式思考

分支式思考是一个MCP服务器,它实现了基于分支的思维导航。该项目支持多条思路分支、分支导航(列表、聚焦、历史)、相关思想之间的交叉引用、从关键点自动生成见解以及分支优先级跟踪,为用户提供了高效且灵活的思维管理方式。

🚀 快速开始

分支式思考项目基于以下工具开发:https://github.com/modelcontextprotocol/servers/tree/main/src/sequentialthinking 。使用前,你需要进行安装操作。

✨ 主要特性

  • 分支管理:可创建和在不同思路之间导航。
  • 交叉引用:通过类型化关系链接相关思想。
  • 见解生成:从思想中的关键点自动生成见解。
  • 优先级跟踪:根据信心和连接跟踪分支优先级。

📦 安装指南

  1. 将此项目放在您的自定义MCP工具目录中。
npm install
npm run build 
  1. 在您的 claude_desktop_config.json 中添加以下内容:
"branch-thinking": {
  "command": "node",
  "args": [
    "/your-custom-mcp-dir-here/branch-thinking/dist/index.js"
  ]
}

💻 使用示例

基础用法

以下是一些常用命令的使用示例:

# 显示所有分支及其当前状态
list
# 切换到特定分支
focus [branchId]
# 显示分支中的思想历史
history [branchId?]

💡 使用建议

Claude通常不会主动使用工具,除非明确提示。如果您希望在未被提示时使用此工具,请在Claude个人资料设置(或系统提示)中添加如下内容:

如果我要求你“逐步思考”,“思考后再回应”或“使用链式思维”,这意味着要使用分支式思考工具。如果你认为你的回应会受益于多个步骤,不要犹豫地自行使用分支式思考工具。

📄 项目信息

需要说明的是,大部分代码是由Claude生成的,但概念、测试、修复和实现都是项目开发者自己完成的。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client