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.
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/PKG-INFO +46 -7
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/README.md +45 -6
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/pyproject.toml +1 -1
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/uv.lock +1 -1
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/.envrc +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/.gitignore +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/CHANGELOG.md +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/CLAUDE.md +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/LICENSE +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/debug_mcp_connection.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/example.md +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/__init__.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/analysis.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/logging_conf.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/models.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/server.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/storage.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/storage_utils.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/utils.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/run_server.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/__init__.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/test_analysis.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/test_models.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/test_server.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/test_storage.py +0 -0
- {sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/tests/test_storage_utils.py +0 -0
- {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.
|
|
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
|
|
185
|
+
### Option 3: Using PyPI with uvx (recommended for users)
|
|
166
186
|
|
|
167
|
-
|
|
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
|
|
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
|
-
"
|
|
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:**
|
|
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
|
|
169
|
+
### Option 3: Using PyPI with uvx (recommended for users)
|
|
150
170
|
|
|
151
|
-
|
|
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
|
|
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
|
-
"
|
|
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:**
|
|
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
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/logging_conf.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sequential_thinking-0.6.0 → sequential_thinking-0.7.0}/mcp_sequential_thinking/storage_utils.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|