@gotza02/sequential-thinking 2026.2.26 → 2026.2.28

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.
Files changed (2) hide show
  1. package/README.md +21 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -60,7 +60,13 @@ To use this server with your AI client (Claude Desktop, Gemini CLI, etc.), add t
60
60
  "@gotza02/sequential-thinking"
61
61
  ],
62
62
  "env": {
63
- "BRAVE_API_KEY": "your_brave_api_key_here"
63
+ "BRAVE_API_KEY": "your_brave_api_key_here",
64
+ "EXA_API_KEY": "your_exa_api_key_here",
65
+ "GOOGLE_SEARCH_API_KEY": "your_google_api_key",
66
+ "GOOGLE_SEARCH_CX": "your_google_cx_id",
67
+ "THOUGHTS_STORAGE_PATH": "./thoughts_history.json",
68
+ "NOTES_STORAGE_PATH": "./project_notes.json",
69
+ "DISABLE_THOUGHT_LOGGING": "false"
64
70
  }
65
71
  }
66
72
  }
@@ -77,7 +83,13 @@ To use this server with your AI client (Claude Desktop, Gemini CLI, etc.), add t
77
83
  "/absolute/path/to/thinking/dist/index.js"
78
84
  ],
79
85
  "env": {
80
- "BRAVE_API_KEY": "your_brave_api_key_here"
86
+ "BRAVE_API_KEY": "your_brave_api_key_here",
87
+ "EXA_API_KEY": "your_exa_api_key_here",
88
+ "GOOGLE_SEARCH_API_KEY": "your_google_api_key",
89
+ "GOOGLE_SEARCH_CX": "your_google_cx_id",
90
+ "THOUGHTS_STORAGE_PATH": "./thoughts_history.json",
91
+ "NOTES_STORAGE_PATH": "./project_notes.json",
92
+ "DISABLE_THOUGHT_LOGGING": "false"
81
93
  }
82
94
  }
83
95
  }
@@ -102,7 +114,12 @@ For Gemini CLI tools that support MCP (often via a `config.json` or `mcp_config.
102
114
  ],
103
115
  "env": {
104
116
  "BRAVE_API_KEY": "your_brave_api_key_here",
105
- "THOUGHTS_STORAGE_PATH": "/absolute/path/to/thoughts.json"
117
+ "EXA_API_KEY": "your_exa_api_key_here",
118
+ "GOOGLE_SEARCH_API_KEY": "your_google_api_key",
119
+ "GOOGLE_SEARCH_CX": "your_google_cx_id",
120
+ "THOUGHTS_STORAGE_PATH": "./thoughts_history.json",
121
+ "NOTES_STORAGE_PATH": "./project_notes.json",
122
+ "DISABLE_THOUGHT_LOGGING": "false"
106
123
  }
107
124
  }
108
125
  }
@@ -190,4 +207,4 @@ When using the `sequentialthinking` tool, you must specify a `thoughtType`:
190
207
 
191
208
  ## License
192
209
 
193
- MIT
210
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gotza02/sequential-thinking",
3
- "version": "2026.2.26",
3
+ "version": "2026.2.28",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },