Skip to content

Commit d4ee573

Browse files
authored
feat: add Sequential Thinking MCP server definition (#72)
* 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 * fix: rename server files with transport suffix - community.sequential-thinking.json -> community.sequential-thinking-npx.json (id: community.sequential-thinking-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 69382e8 commit d4ee573

1 file changed

Lines changed: 54 additions & 0 deletions

File tree

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.sequential-thinking-npx",
4+
"name": "Sequential Thinking (npx)",
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": [
10+
"ai-ml",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"thinking",
15+
"reasoning",
16+
"problem-solving",
17+
"chain-of-thought",
18+
"planning",
19+
"analysis"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@modelcontextprotocol/server-sequential-thinking"
27+
],
28+
"metadata": {
29+
"inputs": []
30+
}
31+
},
32+
"auth": {
33+
"type": "none"
34+
},
35+
"contributor": {
36+
"name": "Model Context Protocol",
37+
"github": "modelcontextprotocol",
38+
"url": "https://modelcontextprotocol.io"
39+
},
40+
"links": {
41+
"repository": "https://github.com/modelcontextprotocol/servers",
42+
"homepage": "https://modelcontextprotocol.io",
43+
"documentation": "https://github.com/modelcontextprotocol/servers/blob/main/src/sequentialthinking/README.md"
44+
},
45+
"platforms": [
46+
"all"
47+
],
48+
"capabilities": {
49+
"tools": true,
50+
"resources": false,
51+
"prompts": false,
52+
"read_only_mode": true
53+
}
54+
}

0 commit comments

Comments
 (0)