Sequential Thinking MCP Server
by Anthropic ยท โญ 1.6k stars ยท updated 4 weeks ago
Dynamic and reflective problem-solving through thought sequences. Break complex problems into sequential reasoning steps, revise thinking, and explore solution branches systematically.
85
Very Good
Quality Score Breakdown
maintenance88/100
community82/100
documentation85/100
compatibility85/100
Use Cases
- โcomplex problem solving
- โstructured reasoning
- โstep-by-step analysis
- โdecision trees
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}
}