snow-flow 3.3.7 → 3.4.0

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.
@@ -79,7 +79,7 @@
79
79
  "args": [
80
80
  "{{PROJECT_ROOT}}/dist/mcp/servicenow-automation-mcp.js"
81
81
  ],
82
- "description": "Scheduled jobs, event rules, notifications, SLA definitions, escalation rules, workflow activities, schedule/event discovery",
82
+ "description": "Scheduled jobs, event rules, notifications, SLA definitions, escalation rules, workflow activities, script execution with output retrieval, script history, REST testing, system logs, execution tracing",
83
83
  "env": {
84
84
  "SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
85
85
  "SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
@@ -131,6 +131,18 @@
131
131
  "SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
132
132
  "SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
133
133
  }
134
+ },
135
+ "servicenow-system-properties": {
136
+ "command": "node",
137
+ "args": [
138
+ "{{PROJECT_ROOT}}/dist/mcp/servicenow-system-properties-mcp.js"
139
+ ],
140
+ "description": "System property management via official ServiceNow APIs: get/set/list/delete properties, bulk operations, import/export JSON, validate values, search, categories, audit history - all using standard Table API on sys_properties",
141
+ "env": {
142
+ "SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
143
+ "SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
144
+ "SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
145
+ }
134
146
  }
135
147
  }
136
148
  }
@@ -36,7 +36,7 @@ function getDynamicVersion() {
36
36
  console.warn('Warning: Could not read version from package.json:', error);
37
37
  }
38
38
  // Fallback to hardcoded version
39
- return '3.3.7';
39
+ return '3.4.0';
40
40
  }
41
41
  // Export a constant that uses the dynamic version
42
42
  exports.VERSION = getDynamicVersion();