@wemake.cx/sequential-thinking 0.0.1

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 ADDED
@@ -0,0 +1,137 @@
1
+ # Sequential Thinking MCP Server
2
+
3
+ An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured
4
+ thinking process.
5
+
6
+ ## Features
7
+
8
+ - Break down complex problems into manageable steps
9
+ - Revise and refine thoughts as understanding deepens
10
+ - Branch into alternative paths of reasoning
11
+ - Adjust the total number of thoughts dynamically
12
+ - Generate and verify solution hypotheses
13
+
14
+ ## Tool
15
+
16
+ ### sequential_thinking
17
+
18
+ Facilitates a detailed, step-by-step thinking process for problem-solving and analysis.
19
+
20
+ **Inputs:**
21
+
22
+ - `thought` (string): The current thinking step
23
+ - `nextThoughtNeeded` (boolean): Whether another thought step is needed
24
+ - `thoughtNumber` (integer): Current thought number
25
+ - `totalThoughts` (integer): Estimated total thoughts needed
26
+ - `isRevision` (boolean, optional): Whether this revises previous thinking
27
+ - `revisesThought` (integer, optional): Which thought is being reconsidered
28
+ - `branchFromThought` (integer, optional): Branching point thought number
29
+ - `branchId` (string, optional): Branch identifier
30
+ - `needsMoreThoughts` (boolean, optional): If more thoughts are needed
31
+
32
+ ## Usage
33
+
34
+ The Sequential Thinking tool is designed for:
35
+
36
+ - Breaking down complex problems into steps
37
+ - Planning and design with room for revision
38
+ - Analysis that might need course correction
39
+ - Problems where the full scope might not be clear initially
40
+ - Tasks that need to maintain context over multiple steps
41
+ - Situations where irrelevant information needs to be filtered out
42
+
43
+ ## Configuration
44
+
45
+ ### Usage with Claude Desktop
46
+
47
+ Add this to your `claude_desktop_config.json`:
48
+
49
+ #### bunx
50
+
51
+ ```json
52
+ {
53
+ "mcpServers": {
54
+ "sequential-thinking": {
55
+ "command": "bunx",
56
+ "args": ["-y", "@wemake.cx/sequential-thinking"]
57
+ }
58
+ }
59
+ }
60
+ ```
61
+
62
+ #### docker
63
+
64
+ ```json
65
+ {
66
+ "mcpServers": {
67
+ "sequential-thinking": {
68
+ "command": "docker",
69
+ "args": ["run", "--rm", "-i", "mcp/sequential-thinking"]
70
+ }
71
+ }
72
+ }
73
+ ```
74
+
75
+ To disable logging of thought information set env var: `DISABLE_THOUGHT_LOGGING` to `true`. Comment
76
+
77
+ ### Usage with VS Code
78
+
79
+ For quick installation, click one of the installation buttons below...
80
+
81
+ [![Install with NPX in VS Code](https://img.shields.io/badge/VS_Code-NPM-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=sequential-thinking&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40modelcontextprotocol%2Fserver-sequential-thinking%22%5D%7D)
82
+ [![Install with NPX in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-NPM-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=sequential-thinking&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40modelcontextprotocol%2Fserver-sequential-thinking%22%5D%7D&quality=insiders)
83
+
84
+ [![Install with Docker in VS Code](https://img.shields.io/badge/VS_Code-Docker-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=sequential-thinking&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22--rm%22%2C%22-i%22%2C%22mcp%2Fsequential-thinking%22%5D%7D)
85
+ [![Install with Docker in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Docker-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=sequential-thinking&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22--rm%22%2C%22-i%22%2C%22mcp%2Fsequential-thinking%22%5D%7D&quality=insiders)
86
+
87
+ For manual installation, you can configure the MCP server using one of these methods:
88
+
89
+ **Method 1: User Configuration (Recommended)** Add the configuration to your user-level MCP configuration file. Open the
90
+ Command Palette (`Ctrl + Shift + P`) and run `MCP: Open User Configuration`. This will open your user `mcp.json` file
91
+ where you can add the server configuration.
92
+
93
+ **Method 2: Workspace Configuration** Alternatively, you can add the configuration to a file called `.vscode/mcp.json`
94
+ in your workspace. This will allow you to share the configuration with others.
95
+
96
+ > For more details about MCP configuration in VS Code, see the
97
+ > [official VS Code MCP documentation](https://code.visualstudio.com/docs/copilot/mcp).
98
+
99
+ For bunx installation:
100
+
101
+ ```json
102
+ {
103
+ "servers": {
104
+ "sequential-thinking": {
105
+ "command": "bunx",
106
+ "args": ["-y", "@wemake.cx/sequential-thinking"]
107
+ }
108
+ }
109
+ }
110
+ ```
111
+
112
+ For Docker installation:
113
+
114
+ ```json
115
+ {
116
+ "servers": {
117
+ "sequential-thinking": {
118
+ "command": "docker",
119
+ "args": ["run", "--rm", "-i", "mcp/sequential-thinking"]
120
+ }
121
+ }
122
+ }
123
+ ```
124
+
125
+ ## Building
126
+
127
+ Docker:
128
+
129
+ ```bash
130
+ docker build -t mcp/sequential-thinking -f src/sequential-thinking/Dockerfile .
131
+ ```
132
+
133
+ ## License
134
+
135
+ This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software,
136
+ subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project
137
+ repository.