@gotza02/sequential-thinking 2026.2.28 → 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 +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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
|