@gotza02/seq-thinking 1.1.8 → 1.1.9
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 +4 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/mcp-server.js +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# MCP Sequential Thinking with Swarm Coordination
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@gotza02/seq-thinking)
|
|
4
4
|
[](LICENSE)
|
|
5
5
|
[](https://nodejs.org/)
|
|
6
6
|
|
|
@@ -103,6 +103,9 @@ The system is built on a modular architecture:
|
|
|
103
103
|
|
|
104
104
|
## 📝 Changelog
|
|
105
105
|
|
|
106
|
+
### v1.1.9 (2026-02-03)
|
|
107
|
+
- **Fix:** Added multiple bin aliases to improve `npx` compatibility.
|
|
108
|
+
|
|
106
109
|
### v1.1.8 (2026-02-03)
|
|
107
110
|
- **Fix:** Restored standard bin configuration.
|
|
108
111
|
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/mcp-server.js
CHANGED
|
@@ -96,7 +96,7 @@ export class MCPServer {
|
|
|
96
96
|
registeredAgents = new Map();
|
|
97
97
|
dataDir = './data';
|
|
98
98
|
constructor() {
|
|
99
|
-
this.server = new Server({ name: 'mcp-sequential-thinking', version: '1.1.
|
|
99
|
+
this.server = new Server({ name: 'mcp-sequential-thinking', version: '1.1.9' }, { capabilities: { tools: {} } });
|
|
100
100
|
this.sessionManager = new SessionManager(this.dataDir);
|
|
101
101
|
this.swarmCoordinator = new SwarmCoordinator(this.dataDir);
|
|
102
102
|
this.setupHandlers();
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gotza02/seq-thinking",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.9",
|
|
4
4
|
"description": "Advanced Sequential Thinking MCP Tool with Swarm Agent Coordination",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"seq-thinking": "dist/mcp-server.js"
|
|
8
|
+
"seq-thinking": "./dist/mcp-server.js",
|
|
9
|
+
"advanced-thinking": "./dist/mcp-server.js"
|
|
9
10
|
},
|
|
10
11
|
"types": "dist/index.d.ts",
|
|
11
12
|
"files": [
|