Sequential Thinking MCP Server

AIstdiov2026.1.26
Repositorio

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.

Conectar

Añade esta configuración a .claude/mcp.json

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

Herramientas (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"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Anthropic (@modelcontextprotocol)
Repositorio
https://github.com/modelcontextprotocol/servers
Licencia
Apache-2.0
Versión
2026.1.26
Estrellas
86,206
Última actualización
27 de enero de 2026