Sequential Thinking MCP Server

AIstdiov2026.1.26
Репозиторий

Provides a structured sequential thinking tool through the Model Context Protocol. Enables AI agents to break down complex problems into numbered thought steps, revise previous thoughts, branch into alternative paths, and adjust the total number of steps dynamically. Useful for multi-step reasoning, planning, and analysis tasks that benefit from explicit step-by-step thinking.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

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

Инструменты (1)

sequentialthinking

Record a sequential thinking step for structured problem-solving. Supports revising previous thoughts and branching into alternative reasoning paths.

{
  "type": "object",
  "required": [
    "thought",
    "thoughtNumber",
    "totalThoughts",
    "nextThoughtNeeded"
  ],
  "properties": {
    "thought": {
      "type": "string",
      "description": "The content of the current thinking step"
    },
    "branchId": {
      "type": "string",
      "description": "Identifier for the alternative reasoning branch"
    },
    "isRevision": {
      "type": "boolean",
      "description": "Whether this revises a previous thought"
    },
    "thoughtNumber": {
      "type": "integer",
      "description": "Current thought number in the sequence"
    },
    "totalThoughts": {
      "type": "integer",
      "description": "Estimated total number of thoughts needed (can be adjusted)"
    },
    "revisesThought": {
      "type": "integer",
      "description": "Which thought number this revises (if isRevision is true)"
    },
    "branchFromThought": {
      "type": "integer",
      "description": "Which thought to branch from for alternative reasoning"
    },
    "nextThoughtNeeded": {
      "type": "boolean",
      "description": "Whether another thought step is needed after this one"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
Anthropic (@modelcontextprotocol)
Репозиторий
https://github.com/modelcontextprotocol/servers
Лицензия
Apache-2.0
Версия
2026.1.26
Звёзды
86,206
Последнее обновление
27 января 2026 г.