Skip to content

Commit e6ede94

Browse files
claudeits-mash
authored andcommitted
feat: add Sequential Thinking MCP server definition
Add Sequential Thinking local stdio server via npx @modelcontextprotocol/server-sequential-thinking. Structured step-by-step reasoning with branching and revision. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit e6ede94

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.sequential-thinking",
4+
"name": "Sequential Thinking",
5+
"alias": "think",
6+
"description": "Dynamic step-by-step problem solving with branching, revision, and hypothesis validation. Helps LLMs break down complex problems through structured reasoning.",
7+
"icon": "https://avatars.githubusercontent.com/u/182288589?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["ai-ml", "developer-tools"],
10+
"tags": ["thinking", "reasoning", "problem-solving", "chain-of-thought", "planning", "analysis"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"],
16+
"metadata": {
17+
"inputs": []
18+
}
19+
},
20+
21+
"auth": {
22+
"type": "none"
23+
},
24+
25+
"contributor": {
26+
"name": "Model Context Protocol",
27+
"github": "modelcontextprotocol",
28+
"url": "https://modelcontextprotocol.io"
29+
},
30+
31+
"links": {
32+
"repository": "https://github.com/modelcontextprotocol/servers",
33+
"homepage": "https://modelcontextprotocol.io",
34+
"documentation": "https://github.com/modelcontextprotocol/servers/blob/main/src/sequentialthinking/README.md"
35+
},
36+
37+
"platforms": ["all"],
38+
39+
"capabilities": {
40+
"tools": true,
41+
"resources": false,
42+
"prompts": false,
43+
"read_only_mode": true
44+
}
45+
}

0 commit comments

Comments
 (0)