snow-flow 1.3.0 → 1.3.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.
@@ -30,6 +30,8 @@ class BaseMCPServer {
30
30
  * Tool handlers map
31
31
  */
32
32
  this.toolHandlers = new Map();
33
+ // Store the config
34
+ this.config = config;
33
35
  // Initialize server with config
34
36
  this.server = new index_js_1.Server({
35
37
  name: config.name,
package/dist/version.js CHANGED
@@ -7,12 +7,18 @@ exports.VERSION_INFO = exports.VERSION = void 0;
7
7
  exports.getVersionString = getVersionString;
8
8
  exports.getLatestFeatures = getLatestFeatures;
9
9
  exports.isLatestVersion = isLatestVersion;
10
- exports.VERSION = '1.3.0';
10
+ exports.VERSION = '1.3.1';
11
11
  exports.VERSION_INFO = {
12
12
  version: exports.VERSION,
13
13
  name: 'Snow-Flow',
14
14
  description: 'ServiceNow Queen Agent - Hive-Mind Intelligence for ServiceNow Development',
15
15
  features: {
16
+ '1.3.1': [
17
+ '🚨 HOTFIX: Fixed "memory MCP tool is not available" error',
18
+ '🔧 CONFIG BUG FIX: BaseMCPServer now properly stores config parameter',
19
+ '✅ MEMORY RESTORED: Memory MCP server works again with requiresAuth: false',
20
+ '⚡ CRITICAL FIX: this.config was undefined causing authentication checks to fail'
21
+ ],
16
22
  '1.3.0': [
17
23
  '🎯 BREAKTHROUGH: Fixed empty flows issue - ServiceNow flows now work completely!',
18
24
  '🔧 FLOW COMPONENTS: Added sys_hub_action_instance, sys_hub_trigger_instance, sys_hub_flow_logic creation',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "ServiceNow Queen Agent - Hive-Mind Intelligence for ServiceNow Development inspired by claude-flow. Transform complex workflows into elegant one-command orchestration.",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",