snow-flow 1.2.2 → 1.2.3

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "mcpServers": {
2
+ "servers": {
3
3
  "servicenow-deployment": {
4
4
  "command": "node",
5
5
  "args": [
@@ -123,6 +123,17 @@
123
123
  "SNOW_CLIENT_ID": "${SNOW_CLIENT_ID}",
124
124
  "SNOW_CLIENT_SECRET": "${SNOW_CLIENT_SECRET}"
125
125
  }
126
+ },
127
+ "servicenow-memory": {
128
+ "command": "node",
129
+ "args": [
130
+ "/Users/nielsvanderwerf/Projects/servicenow_multiagent/dist/mcp/servicenow-memory-mcp.js"
131
+ ],
132
+ "env": {
133
+ "SNOW_INSTANCE": "${SNOW_INSTANCE}",
134
+ "SNOW_CLIENT_ID": "${SNOW_CLIENT_ID}",
135
+ "SNOW_CLIENT_SECRET": "${SNOW_CLIENT_SECRET}"
136
+ }
126
137
  }
127
138
  }
128
139
  }
Binary file
package/dist/version.js CHANGED
@@ -7,12 +7,19 @@ 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.2.2';
10
+ exports.VERSION = '1.2.3';
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.2.3': [
17
+ '🔐 AUTHENTICATION FIX: Resolved MCP authentication failure due to environment variable mismatch',
18
+ '🔧 CONFIG ALIGNMENT: Fixed discrepancy between .env file and MCP configuration files',
19
+ '✅ VALIDATED CONNECTION: All ServiceNow MCP tools now authenticate properly',
20
+ '💯 MEMORY SERVER: servicenow-memory MCP server authentication fully functional',
21
+ '🚀 SWARM READY: All swarm commands now execute without authentication errors'
22
+ ],
16
23
  '1.2.2': [
17
24
  '🎯 CRITICAL FIX: Resolved empty flows issue - Complete MCP integration achieved',
18
25
  '🔧 FLOW-BUILDER AGENT: Now uses MCPExecutionBridge for real ServiceNow deployment',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
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",