顺序思维MCP服务器

顺序思维MCP服务器

一个实现顺序思维协议的MCP服务器,提供结构化的问题解决方法。

快速入门

概述

顺序思维MCP服务器通过分解复杂问题为可管理步骤帮助解决问题。

使用方法

本地构建

  1. 克隆仓库:git clone https://github.com/zengwenliang416/mcp-server-sequential-thinking.git
  2. 安装依赖:npm install
  3. 构建项目:npm run build

Docker构建

  1. 克隆仓库:git clone https://github.com/zengwenliang416/mcp-server-sequential-thinking.git
  2. 构建镜像:docker build -t zengwenliang0416/mcp-server-sequential-thinking .

集成方法

使用NPX配置

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@zengwenliang/mcp-server-sequential-thinking"
      ]
    }
  }
}

使用Docker配置

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "zengwenliang0416/mcp-server-sequential-thinking"
      ]
    }
  }
}