@gotza02/sequential-thinking 2026.2.5 → 2026.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -2
- package/dist/index.js +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -99,6 +99,11 @@ git clone https://github.com/gotza02/sequential-thinking.git && cd sequential-th
|
|
|
99
99
|
|
|
100
100
|
## ⚙️ การตั้งค่าใน AI Client (Configuration Examples)
|
|
101
101
|
|
|
102
|
+
คุณสามารถนำค่าไปใส่ในไฟล์คอนฟิกของ AI Client ที่คุณใช้งาน โดยเลือกวิธีใดวิธีหนึ่ง (npx หรือ local node)
|
|
103
|
+
|
|
104
|
+
### 1. สำหรับ Gemini CLI
|
|
105
|
+
แก้ไขไฟล์ `~/.gemini/settings.json` (หรือ `config.json`):
|
|
106
|
+
|
|
102
107
|
```json
|
|
103
108
|
{
|
|
104
109
|
"mcpServers": {
|
|
@@ -106,8 +111,34 @@ git clone https://github.com/gotza02/sequential-thinking.git && cd sequential-th
|
|
|
106
111
|
"command": "npx",
|
|
107
112
|
"args": ["-y", "@gotza02/sequential-thinking"],
|
|
108
113
|
"env": {
|
|
109
|
-
"BRAVE_API_KEY": "
|
|
110
|
-
"EXA_API_KEY": "
|
|
114
|
+
"BRAVE_API_KEY": "YOUR_BRAVE_KEY",
|
|
115
|
+
"EXA_API_KEY": "YOUR_EXA_KEY",
|
|
116
|
+
"GOOGLE_SEARCH_API_KEY": "YOUR_GOOGLE_API_KEY",
|
|
117
|
+
"GOOGLE_SEARCH_CX": "YOUR_GOOGLE_SEARCH_ENGINE_ID",
|
|
118
|
+
"THOUGHTS_STORAGE_PATH": "thoughts_history.json",
|
|
119
|
+
"NOTES_STORAGE_PATH": "project_notes.json",
|
|
120
|
+
"THOUGHT_DELAY_MS": "1000",
|
|
121
|
+
"DISABLE_THOUGHT_LOGGING": "false"
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### 2. สำหรับ Claude Desktop
|
|
129
|
+
แก้ไขไฟล์ `claude_desktop_config.json`:
|
|
130
|
+
|
|
131
|
+
```json
|
|
132
|
+
{
|
|
133
|
+
"mcpServers": {
|
|
134
|
+
"sequential-thinking": {
|
|
135
|
+
"command": "node",
|
|
136
|
+
"args": ["/absolute/path/to/sequential-thinking/dist/index.js"],
|
|
137
|
+
"env": {
|
|
138
|
+
"BRAVE_API_KEY": "YOUR_BRAVE_KEY",
|
|
139
|
+
"EXA_API_KEY": "YOUR_EXA_KEY",
|
|
140
|
+
"GOOGLE_SEARCH_API_KEY": "YOUR_GOOGLE_API_KEY",
|
|
141
|
+
"GOOGLE_SEARCH_CX": "YOUR_GOOGLE_SEARCH_ENGINE_ID",
|
|
111
142
|
"THOUGHT_DELAY_MS": "1000"
|
|
112
143
|
}
|
|
113
144
|
}
|
|
@@ -115,6 +146,8 @@ git clone https://github.com/gotza02/sequential-thinking.git && cd sequential-th
|
|
|
115
146
|
}
|
|
116
147
|
```
|
|
117
148
|
|
|
149
|
+
> **Note:** สำหรับ Google Search คุณจำเป็นต้องมีทั้ง **API Key** และ **Search Engine ID (CX)** ซึ่งสามารถสร้างได้จาก [Google Custom Search Engine](https://programmablesearchengine.google.com/)
|
|
150
|
+
|
|
118
151
|
---
|
|
119
152
|
|
|
120
153
|
## 🤖 Recommended System Instruction (The Ultimate Deep Engineer)
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ import { registerNoteTools } from './tools/notes.js';
|
|
|
12
12
|
import { registerCodingTools } from './tools/coding.js';
|
|
13
13
|
const server = new McpServer({
|
|
14
14
|
name: "sequential-thinking-server",
|
|
15
|
-
version: "2026.2.
|
|
15
|
+
version: "2026.2.6",
|
|
16
16
|
});
|
|
17
17
|
const thinkingServer = new SequentialThinkingServer(process.env.THOUGHTS_STORAGE_PATH || 'thoughts_history.json', parseInt(process.env.THOUGHT_DELAY_MS || '0', 10));
|
|
18
18
|
const knowledgeGraph = new ProjectKnowledgeGraph();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gotza02/sequential-thinking",
|
|
3
|
-
"version": "2026.2.
|
|
3
|
+
"version": "2026.2.7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -29,21 +29,21 @@
|
|
|
29
29
|
"test": "vitest run --coverage"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
32
|
+
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
33
33
|
"@mozilla/readability": "^0.6.0",
|
|
34
|
-
"chalk": "^5.
|
|
34
|
+
"chalk": "^5.6.2",
|
|
35
35
|
"jsdom": "^27.4.0",
|
|
36
36
|
"turndown": "^7.2.2",
|
|
37
|
-
"typescript": "^5.
|
|
38
|
-
"yargs": "^
|
|
37
|
+
"typescript": "^5.9.3",
|
|
38
|
+
"yargs": "^18.0.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/jsdom": "^27.0.0",
|
|
42
|
-
"@types/node": "^
|
|
42
|
+
"@types/node": "^25.0.9",
|
|
43
43
|
"@types/turndown": "^5.0.6",
|
|
44
|
-
"@types/yargs": "^17.0.
|
|
45
|
-
"@vitest/coverage-v8": "^2.
|
|
46
|
-
"shx": "^0.
|
|
47
|
-
"vitest": "^2.
|
|
44
|
+
"@types/yargs": "^17.0.35",
|
|
45
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
46
|
+
"shx": "^0.4.0",
|
|
47
|
+
"vitest": "^3.2.4"
|
|
48
48
|
}
|
|
49
49
|
}
|