sequential-thinking 0.6.0__tar.gz → 0.7.0__tar.gz

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 (27) hide show
  1. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/PKG-INFO +46 -7
  2. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/README.md +45 -6
  3. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/pyproject.toml +1 -1
  4. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/uv.lock +1 -1
  5. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/.envrc +0 -0
  6. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/.gitignore +0 -0
  7. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/CHANGELOG.md +0 -0
  8. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/CLAUDE.md +0 -0
  9. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/LICENSE +0 -0
  10. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/debug_mcp_connection.py +0 -0
  11. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/example.md +0 -0
  12. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/__init__.py +0 -0
  13. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/analysis.py +0 -0
  14. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/logging_conf.py +0 -0
  15. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/models.py +0 -0
  16. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/server.py +0 -0
  17. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/storage.py +0 -0
  18. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/storage_utils.py +0 -0
  19. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/utils.py +0 -0
  20. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/run_server.py +0 -0
  21. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/__init__.py +0 -0
  22. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/test_analysis.py +0 -0
  23. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/test_models.py +0 -0
  24. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/test_server.py +0 -0
  25. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/test_storage.py +0 -0
  26. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/test_storage_utils.py +0 -0
  27. {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sequential-thinking
3
- Version: 0.6.0
3
+ Version: 0.7.0
4
4
  Summary: A Sequential Thinking MCP Server for advanced problem solving
5
5
  Project-URL: Source, https://github.com/feniix/mcp-sequential-thinking
6
6
  Project-URL: Original, https://github.com/arben-adm/mcp-sequential-thinking
@@ -84,6 +84,26 @@ mcp-sequential-thinking/
84
84
 
85
85
  ## Quick Start
86
86
 
87
+ ### Use from PyPI
88
+
89
+ If you just want to use the MCP server, you do not need to clone this repository.
90
+
91
+ ```bash
92
+ # Run the latest published package directly
93
+ uvx --from sequential-thinking mcp-sequential-thinking
94
+
95
+ # Or install the command as a persistent uv tool
96
+ uv tool install sequential-thinking
97
+ mcp-sequential-thinking
98
+
99
+ # Or install it into a project/virtual environment
100
+ uv venv
101
+ uv pip install sequential-thinking
102
+ mcp-sequential-thinking
103
+ ```
104
+
105
+ ### Local development
106
+
87
107
  1. **Set Up Project**
88
108
  ```bash
89
109
  # Create and activate virtual environment
@@ -91,7 +111,7 @@ mcp-sequential-thinking/
91
111
  .venv\Scripts\activate # Windows
92
112
  source .venv/bin/activate # Unix
93
113
 
94
- # Install package and dependencies
114
+ # Install package and dependencies in editable mode
95
115
  uv pip install -e .
96
116
 
97
117
  # For development with testing tools
@@ -162,9 +182,26 @@ If you have set up the project with `uv venv && uv pip install -e .`, point dire
162
182
  }
163
183
  ```
164
184
 
165
- ### Option 3: Using the installed entry point
185
+ ### Option 3: Using PyPI with uvx (recommended for users)
166
186
 
167
- If you've installed the package globally with `pip install -e .`:
187
+ ```json
188
+ {
189
+ "mcpServers": {
190
+ "sequential-thinking": {
191
+ "command": "uvx",
192
+ "args": [
193
+ "--from",
194
+ "sequential-thinking",
195
+ "mcp-sequential-thinking"
196
+ ]
197
+ }
198
+ }
199
+ }
200
+ ```
201
+
202
+ ### Option 4: Using the installed entry point
203
+
204
+ If you've installed the command with `uv tool install sequential-thinking`, `pip install sequential-thinking`, or `uv pip install sequential-thinking`:
168
205
 
169
206
  ```json
170
207
  {
@@ -176,7 +213,9 @@ If you've installed the package globally with `pip install -e .`:
176
213
  }
177
214
  ```
178
215
 
179
- ### Option 4: Using uvx (no local install needed)
216
+ ### Option 5: Using uvx from GitHub
217
+
218
+ Use this if you want the latest repository version instead of the latest PyPI release:
180
219
 
181
220
  ```json
182
221
  {
@@ -322,7 +361,7 @@ Add to your Gemini CLI settings at `~/.gemini/settings.json`:
322
361
  "command": "uvx",
323
362
  "args": [
324
363
  "--from",
325
- "git+https://github.com/feniix/mcp-sequential-thinking",
364
+ "sequential-thinking",
326
365
  "mcp-sequential-thinking"
327
366
  ],
328
367
  "env": {}
@@ -331,7 +370,7 @@ Add to your Gemini CLI settings at `~/.gemini/settings.json`:
331
370
  }
332
371
  ```
333
372
 
334
- > **Tip:** All editor configurations above use `uv run` or `uvx`. You can also point directly to the venv Python interpreter (see [Claude Desktop Option 1](#option-1-using-the-virtual-environment-recommended-for-linuxmacos)) or use `uvx` (see [Option 4](#option-4-using-uvx-no-local-install-needed)) if you prefer not to clone the repository.
373
+ > **Tip:** For normal use, prefer the PyPI `uvx --from sequential-thinking mcp-sequential-thinking` configuration. For local development, use `uv run --directory /path/to/mcp-sequential-thinking -m mcp_sequential_thinking.server` or point directly to the venv Python interpreter (see [Claude Desktop Option 1](#option-1-using-the-virtual-environment-recommended-for-linuxmacos)).
335
374
 
336
375
  # How It Works
337
376
 
@@ -68,6 +68,26 @@ mcp-sequential-thinking/
68
68
 
69
69
  ## Quick Start
70
70
 
71
+ ### Use from PyPI
72
+
73
+ If you just want to use the MCP server, you do not need to clone this repository.
74
+
75
+ ```bash
76
+ # Run the latest published package directly
77
+ uvx --from sequential-thinking mcp-sequential-thinking
78
+
79
+ # Or install the command as a persistent uv tool
80
+ uv tool install sequential-thinking
81
+ mcp-sequential-thinking
82
+
83
+ # Or install it into a project/virtual environment
84
+ uv venv
85
+ uv pip install sequential-thinking
86
+ mcp-sequential-thinking
87
+ ```
88
+
89
+ ### Local development
90
+
71
91
  1. **Set Up Project**
72
92
  ```bash
73
93
  # Create and activate virtual environment
@@ -75,7 +95,7 @@ mcp-sequential-thinking/
75
95
  .venv\Scripts\activate # Windows
76
96
  source .venv/bin/activate # Unix
77
97
 
78
- # Install package and dependencies
98
+ # Install package and dependencies in editable mode
79
99
  uv pip install -e .
80
100
 
81
101
  # For development with testing tools
@@ -146,9 +166,26 @@ If you have set up the project with `uv venv && uv pip install -e .`, point dire
146
166
  }
147
167
  ```
148
168
 
149
- ### Option 3: Using the installed entry point
169
+ ### Option 3: Using PyPI with uvx (recommended for users)
150
170
 
151
- If you've installed the package globally with `pip install -e .`:
171
+ ```json
172
+ {
173
+ "mcpServers": {
174
+ "sequential-thinking": {
175
+ "command": "uvx",
176
+ "args": [
177
+ "--from",
178
+ "sequential-thinking",
179
+ "mcp-sequential-thinking"
180
+ ]
181
+ }
182
+ }
183
+ }
184
+ ```
185
+
186
+ ### Option 4: Using the installed entry point
187
+
188
+ If you've installed the command with `uv tool install sequential-thinking`, `pip install sequential-thinking`, or `uv pip install sequential-thinking`:
152
189
 
153
190
  ```json
154
191
  {
@@ -160,7 +197,9 @@ If you've installed the package globally with `pip install -e .`:
160
197
  }
161
198
  ```
162
199
 
163
- ### Option 4: Using uvx (no local install needed)
200
+ ### Option 5: Using uvx from GitHub
201
+
202
+ Use this if you want the latest repository version instead of the latest PyPI release:
164
203
 
165
204
  ```json
166
205
  {
@@ -306,7 +345,7 @@ Add to your Gemini CLI settings at `~/.gemini/settings.json`:
306
345
  "command": "uvx",
307
346
  "args": [
308
347
  "--from",
309
- "git+https://github.com/feniix/mcp-sequential-thinking",
348
+ "sequential-thinking",
310
349
  "mcp-sequential-thinking"
311
350
  ],
312
351
  "env": {}
@@ -315,7 +354,7 @@ Add to your Gemini CLI settings at `~/.gemini/settings.json`:
315
354
  }
316
355
  ```
317
356
 
318
- > **Tip:** All editor configurations above use `uv run` or `uvx`. You can also point directly to the venv Python interpreter (see [Claude Desktop Option 1](#option-1-using-the-virtual-environment-recommended-for-linuxmacos)) or use `uvx` (see [Option 4](#option-4-using-uvx-no-local-install-needed)) if you prefer not to clone the repository.
357
+ > **Tip:** For normal use, prefer the PyPI `uvx --from sequential-thinking mcp-sequential-thinking` configuration. For local development, use `uv run --directory /path/to/mcp-sequential-thinking -m mcp_sequential_thinking.server` or point directly to the venv Python interpreter (see [Claude Desktop Option 1](#option-1-using-the-virtual-environment-recommended-for-linuxmacos)).
319
358
 
320
359
  # How It Works
321
360
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "sequential-thinking"
3
- version = "0.6.0"
3
+ version = "0.7.0"
4
4
  description = "A Sequential Thinking MCP Server for advanced problem solving"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -925,7 +925,7 @@ wheels = [
925
925
 
926
926
  [[package]]
927
927
  name = "sequential-thinking"
928
- version = "0.6.0"
928
+ version = "0.7.0"
929
929
  source = { editable = "." }
930
930
  dependencies = [
931
931
  { name = "mcp" },