@gotza02/seq-thinking 1.1.6 → 1.1.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # MCP Sequential Thinking with Swarm Coordination
2
2
 
3
- [![Version](https://img.shields.io/badge/version-1.1.6-blue.svg)](https://www.npmjs.com/package/@gotza02/seq-thinking)
3
+ [![Version](https://img.shields.io/badge/version-1.1.7-blue.svg)](https://www.npmjs.com/package/@gotza02/seq-thinking)
4
4
  [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
5
5
  [![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](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.7 (2026-02-03)
107
+ - **Fix:** Corrected bin path in package.json to ensure `npx` execution compatibility.
108
+
106
109
  ### v1.1.5 (2026-02-03)
107
110
  - **Doc:** Updated README to prioritize `npx` usage for easier installation.
108
111
  - **Doc:** Updated MCP configuration examples to use `npx` command.
package/dist/index.d.ts CHANGED
@@ -13,7 +13,7 @@ export { generateId, generateUUID, generateShortId, clamp, clampConfidence, lerp
13
13
  /**
14
14
  * Library version
15
15
  */
16
- export declare const VERSION = "1.1.6";
16
+ export declare const VERSION = "1.1.7";
17
17
  /**
18
18
  * Default export - MCPServer
19
19
  */
package/dist/index.js CHANGED
@@ -19,7 +19,7 @@ export { generateId, generateUUID, generateShortId, clamp, clampConfidence, lerp
19
19
  /**
20
20
  * Library version
21
21
  */
22
- export const VERSION = '1.1.6';
22
+ export const VERSION = '1.1.7';
23
23
  /**
24
24
  * Default export - MCPServer
25
25
  */
@@ -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.6' }, { capabilities: { tools: {} } });
99
+ this.server = new Server({ name: 'mcp-sequential-thinking', version: '1.1.7' }, { 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,11 @@
1
1
  {
2
2
  "name": "@gotza02/seq-thinking",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
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
9
  },
10
10
  "types": "dist/index.d.ts",
11
11
  "files": [