@gotza02/sequential-thinking 2026.2.27 → 2026.2.29
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 +16 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -64,8 +64,8 @@ To use this server with your AI client (Claude Desktop, Gemini CLI, etc.), add t
|
|
|
64
64
|
"EXA_API_KEY": "your_exa_api_key_here",
|
|
65
65
|
"GOOGLE_SEARCH_API_KEY": "your_google_api_key",
|
|
66
66
|
"GOOGLE_SEARCH_CX": "your_google_cx_id",
|
|
67
|
-
"THOUGHTS_STORAGE_PATH": "
|
|
68
|
-
"NOTES_STORAGE_PATH": "
|
|
67
|
+
"THOUGHTS_STORAGE_PATH": "./thoughts_history.json",
|
|
68
|
+
"NOTES_STORAGE_PATH": "./project_notes.json",
|
|
69
69
|
"DISABLE_THOUGHT_LOGGING": "false"
|
|
70
70
|
}
|
|
71
71
|
}
|
|
@@ -87,8 +87,8 @@ To use this server with your AI client (Claude Desktop, Gemini CLI, etc.), add t
|
|
|
87
87
|
"EXA_API_KEY": "your_exa_api_key_here",
|
|
88
88
|
"GOOGLE_SEARCH_API_KEY": "your_google_api_key",
|
|
89
89
|
"GOOGLE_SEARCH_CX": "your_google_cx_id",
|
|
90
|
-
"THOUGHTS_STORAGE_PATH": "
|
|
91
|
-
"NOTES_STORAGE_PATH": "
|
|
90
|
+
"THOUGHTS_STORAGE_PATH": "./thoughts_history.json",
|
|
91
|
+
"NOTES_STORAGE_PATH": "./project_notes.json",
|
|
92
92
|
"DISABLE_THOUGHT_LOGGING": "false"
|
|
93
93
|
}
|
|
94
94
|
}
|
|
@@ -117,8 +117,8 @@ For Gemini CLI tools that support MCP (often via a `config.json` or `mcp_config.
|
|
|
117
117
|
"EXA_API_KEY": "your_exa_api_key_here",
|
|
118
118
|
"GOOGLE_SEARCH_API_KEY": "your_google_api_key",
|
|
119
119
|
"GOOGLE_SEARCH_CX": "your_google_cx_id",
|
|
120
|
-
"THOUGHTS_STORAGE_PATH": "
|
|
121
|
-
"NOTES_STORAGE_PATH": "
|
|
120
|
+
"THOUGHTS_STORAGE_PATH": "./thoughts_history.json",
|
|
121
|
+
"NOTES_STORAGE_PATH": "./project_notes.json",
|
|
122
122
|
"DISABLE_THOUGHT_LOGGING": "false"
|
|
123
123
|
}
|
|
124
124
|
}
|
|
@@ -127,6 +127,16 @@ For Gemini CLI tools that support MCP (often via a `config.json` or `mcp_config.
|
|
|
127
127
|
```
|
|
128
128
|
*Note: Replace `/absolute/path/to/...` with the actual full paths on your system.*
|
|
129
129
|
|
|
130
|
+
### 💡 Pro-Tip: Finding your Node path
|
|
131
|
+
|
|
132
|
+
If your client (like Claude Desktop) requires the absolute path to `node`, you can find it by running:
|
|
133
|
+
|
|
134
|
+
- **macOS / Linux:** `which node`
|
|
135
|
+
- *Example output:* `/usr/local/bin/node`
|
|
136
|
+
- **Windows (Command Prompt):** `where node`
|
|
137
|
+
- *Example output:* `C:\Program Files\nodejs\node.exe`
|
|
138
|
+
- **Windows (PowerShell):** `Get-Command node | Select-Object -ExpandProperty Definition`
|
|
139
|
+
|
|
130
140
|
---
|
|
131
141
|
|
|
132
142
|
## 🧠 How to Use Sequential Thinking
|