snow-flow 3.5.3 → 3.5.4

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/.mcp.json CHANGED
@@ -194,6 +194,18 @@
194
194
  "SNOW_CLIENT_SECRET": "${SNOW_CLIENT_SECRET}"
195
195
  }
196
196
  },
197
+ "servicenow-local-development": {
198
+ "command": "node",
199
+ "args": [
200
+ "/Users/nielsvanderwerf/Projects/snow-flow-dev/snow-flow/dist/mcp/servicenow-local-development-mcp.js"
201
+ ],
202
+ "description": "Local development bridge for Claude Code - pull any ServiceNow artifact to local files with native tool integration (snow_pull_artifact, snow_push_artifact, snow_validate_artifact_coherence), smart field chunking for large artifacts, ES5 validation, coherence checking, 12+ artifact types support",
203
+ "env": {
204
+ "SNOW_INSTANCE": "${SNOW_INSTANCE}",
205
+ "SNOW_CLIENT_ID": "${SNOW_CLIENT_ID}",
206
+ "SNOW_CLIENT_SECRET": "${SNOW_CLIENT_SECRET}"
207
+ }
208
+ },
197
209
  "snow-flow": {
198
210
  "command": "node",
199
211
  "args": [
@@ -194,6 +194,18 @@
194
194
  "SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
195
195
  }
196
196
  },
197
+ "servicenow-local-development": {
198
+ "command": "node",
199
+ "args": [
200
+ "{{PROJECT_ROOT}}/dist/mcp/servicenow-local-development-mcp.js"
201
+ ],
202
+ "description": "Local development bridge for Claude Code - pull any ServiceNow artifact to local files with native tool integration (snow_pull_artifact, snow_push_artifact, snow_validate_artifact_coherence), smart field chunking for large artifacts, ES5 validation, coherence checking, 12+ artifact types support",
203
+ "env": {
204
+ "SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
205
+ "SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
206
+ "SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
207
+ }
208
+ },
197
209
  "snow-flow": {
198
210
  "command": "node",
199
211
  "args": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "3.5.3",
3
+ "version": "3.5.4",
4
4
  "description": "ServiceNow development framework with MCP server integration. Executes background scripts using ES5 JavaScript only (ServiceNow Rhino engine requirement). Provides 18 MCP servers including local development sync for editing ServiceNow artifacts with Claude Code native tools, widget deployment with coherence validation, table operations, script execution, machine learning, advanced features, and comprehensive platform management.",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",