snow-flow 4.5.35 → 4.5.36
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.template +60 -0
- package/CLAUDE.md +1 -1
- package/package.json +1 -1
package/.mcp.json.template
CHANGED
|
@@ -215,6 +215,66 @@
|
|
|
215
215
|
"env": {
|
|
216
216
|
"SNOW_FLOW_ENV": "{{SNOW_FLOW_ENV}}"
|
|
217
217
|
}
|
|
218
|
+
},
|
|
219
|
+
"servicenow-secops": {
|
|
220
|
+
"command": "node",
|
|
221
|
+
"args": [
|
|
222
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-secops-mcp.js"
|
|
223
|
+
],
|
|
224
|
+
"description": "Security Operations - security incidents, threat intelligence, vulnerability management, security event correlation, threat hunting, incident response",
|
|
225
|
+
"env": {
|
|
226
|
+
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
227
|
+
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
228
|
+
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"servicenow-itam": {
|
|
232
|
+
"command": "node",
|
|
233
|
+
"args": [
|
|
234
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-itam-mcp.js"
|
|
235
|
+
],
|
|
236
|
+
"description": "IT Asset Management - asset discovery, license management, hardware tracking, software inventory, contract management, asset lifecycle",
|
|
237
|
+
"env": {
|
|
238
|
+
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
239
|
+
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
240
|
+
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"servicenow-notifications": {
|
|
244
|
+
"command": "node",
|
|
245
|
+
"args": [
|
|
246
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-notifications-mcp.js"
|
|
247
|
+
],
|
|
248
|
+
"description": "Notification management - email notifications, SMS alerts, push notifications, notification templates, delivery tracking",
|
|
249
|
+
"env": {
|
|
250
|
+
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
251
|
+
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
252
|
+
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"servicenow-progressive-indexer": {
|
|
256
|
+
"command": "node",
|
|
257
|
+
"args": [
|
|
258
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-progressive-indexer.js"
|
|
259
|
+
],
|
|
260
|
+
"description": "Progressive indexing - performance optimization, intelligent caching, search indexing, data preprocessing, query optimization",
|
|
261
|
+
"env": {
|
|
262
|
+
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
263
|
+
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
264
|
+
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
"servicenow-generic": {
|
|
268
|
+
"command": "node",
|
|
269
|
+
"args": [
|
|
270
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-mcp-server.js"
|
|
271
|
+
],
|
|
272
|
+
"description": "Generic ServiceNow operations - universal table operations, record management, field discovery, basic CRUD operations",
|
|
273
|
+
"env": {
|
|
274
|
+
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
275
|
+
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
276
|
+
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
277
|
+
}
|
|
218
278
|
}
|
|
219
279
|
}
|
|
220
280
|
}
|
package/CLAUDE.md
CHANGED
|
@@ -421,7 +421,7 @@ Follow this systematic approach for all debugging:
|
|
|
421
421
|
|
|
422
422
|
## MCP Server Capabilities
|
|
423
423
|
|
|
424
|
-
Snow-Flow includes
|
|
424
|
+
Snow-Flow includes 22 specialized MCP servers, each providing comprehensive ServiceNow capabilities:
|
|
425
425
|
|
|
426
426
|
### 1. ServiceNow Deployment Server
|
|
427
427
|
**Purpose:** Widget and artifact deployment with coherence validation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-flow",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.36",
|
|
4
4
|
"description": "Conversational ServiceNow development platform using Claude Code. Multi-agent orchestration with 20+ MCP servers providing 200+ ServiceNow tools for comprehensive platform development.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "commonjs",
|