snow-flow 3.4.13 → 3.4.15
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 +91 -31
- package/README.md +597 -96
- package/dist/cli.js +23 -51
- package/dist/mcp/servicenow-automation-mcp.js +65 -29
- package/dist/mcp/servicenow-change-virtualagent-pa-mcp.js +51 -21
- package/dist/mcp/servicenow-cmdb-event-hr-csm-devops-mcp.js +59 -25
- package/dist/mcp/servicenow-deployment-mcp.js +38 -16
- package/dist/mcp/servicenow-development-assistant-mcp.js +67 -31
- package/dist/mcp/servicenow-flow-workspace-mobile-mcp.js +53 -22
- package/dist/mcp/servicenow-integration-mcp.js +48 -12
- package/dist/mcp/servicenow-knowledge-catalog-mcp.js +42 -16
- package/dist/mcp/servicenow-machine-learning-mcp.js +44 -17
- package/dist/mcp/servicenow-operations-mcp.d.ts +1 -0
- package/dist/mcp/servicenow-operations-mcp.js +108 -79
- package/dist/mcp/servicenow-platform-development-mcp.js +42 -11
- package/dist/mcp/servicenow-reporting-analytics-mcp.js +36 -13
- package/dist/mcp/servicenow-security-compliance-mcp.js +35 -13
- package/dist/mcp/servicenow-system-properties-mcp.d.ts +1 -0
- package/dist/mcp/servicenow-system-properties-mcp.js +66 -42
- package/dist/mcp/servicenow-update-set-mcp.js +35 -11
- package/package.json +2 -2
- package/website/README.md +152 -0
- package/website/css/api-docs.css +366 -0
- package/website/css/style.css +809 -0
- package/website/index.html +750 -0
- package/website/js/main.js +323 -0
- package/website/netlify.toml +37 -0
- package/website/package.json +49 -0
- package/website/vercel.json +54 -0
package/.mcp.json.template
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"args": [
|
|
6
6
|
"{{PROJECT_ROOT}}/dist/mcp/servicenow-deployment-mcp.js"
|
|
7
7
|
],
|
|
8
|
-
"description": "Widget deployment
|
|
8
|
+
"description": "Widget and artifact deployment with COHERENCE VALIDATION - ensures HTML template, client script, server script work together perfectly. Tools: snow_deploy, snow_update, snow_validate_deployment, snow_rollback_deployment, snow_deployment_status, snow_export_artifact, snow_import_artifact, snow_preview_widget, snow_widget_test, snow_create_solution_package",
|
|
9
9
|
"env": {
|
|
10
10
|
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
11
11
|
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
@@ -14,72 +14,84 @@
|
|
|
14
14
|
"MCP_DEPLOYMENT_TIMEOUT": "{{MCP_DEPLOYMENT_TIMEOUT}}"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
"servicenow-
|
|
17
|
+
"servicenow-operations": {
|
|
18
18
|
"command": "node",
|
|
19
19
|
"args": [
|
|
20
|
-
"{{PROJECT_ROOT}}/dist/mcp/servicenow-
|
|
20
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-operations-mcp.js"
|
|
21
21
|
],
|
|
22
|
-
"description": "
|
|
22
|
+
"description": "Core ServiceNow operations - universal table query (snow_query_table), CRUD operations, incident/request/problem management, CMDB search, user/group management, catalog items, knowledge search, field discovery (snow_discover_table_fields), get by sys_id",
|
|
23
23
|
"env": {
|
|
24
24
|
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
25
25
|
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
26
26
|
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
|
-
"servicenow-
|
|
29
|
+
"servicenow-automation": {
|
|
30
30
|
"command": "node",
|
|
31
31
|
"args": [
|
|
32
|
-
"{{PROJECT_ROOT}}/dist/mcp/servicenow-
|
|
32
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-automation-mcp.js"
|
|
33
33
|
],
|
|
34
|
-
"description": "
|
|
34
|
+
"description": "Script execution with output capture (snow_execute_script_with_output), scheduled jobs, event rules, notifications, SLA definitions, workflow activities, script history, REST testing, system logs (snow_get_logs), execution tracing, background scripts with autoConfirm option",
|
|
35
35
|
"env": {
|
|
36
36
|
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
37
37
|
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
38
38
|
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
|
-
"servicenow-
|
|
41
|
+
"servicenow-platform-development": {
|
|
42
42
|
"command": "node",
|
|
43
43
|
"args": [
|
|
44
|
-
"{{PROJECT_ROOT}}/dist/mcp/servicenow-
|
|
44
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-platform-development-mcp.js"
|
|
45
45
|
],
|
|
46
|
-
"description": "
|
|
46
|
+
"description": "Platform development - create UI pages, script includes, business rules, client scripts, UI policies/actions, ACLs, dictionary entries, catalog items, workflows, transform maps",
|
|
47
47
|
"env": {
|
|
48
48
|
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
49
49
|
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
50
50
|
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"servicenow-
|
|
53
|
+
"servicenow-integration": {
|
|
54
54
|
"command": "node",
|
|
55
55
|
"args": [
|
|
56
|
-
"{{PROJECT_ROOT}}/dist/mcp/servicenow-
|
|
56
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-integration-mcp.js"
|
|
57
57
|
],
|
|
58
|
-
"description": "
|
|
58
|
+
"description": "Integration management - REST messages, SOAP messages, transform maps, import sets, web services, email configuration, OAuth providers, endpoint discovery, integration testing",
|
|
59
59
|
"env": {
|
|
60
60
|
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
61
61
|
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
62
62
|
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
|
-
"servicenow-
|
|
65
|
+
"servicenow-system-properties": {
|
|
66
66
|
"command": "node",
|
|
67
67
|
"args": [
|
|
68
|
-
"{{PROJECT_ROOT}}/dist/mcp/servicenow-
|
|
68
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-system-properties-mcp.js"
|
|
69
69
|
],
|
|
70
|
-
"description": "
|
|
70
|
+
"description": "System property management - get/set/list/delete properties (snow_property_get, snow_property_set), bulk operations, import/export JSON, validate values, search by pattern, categories, audit history",
|
|
71
71
|
"env": {
|
|
72
72
|
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
73
73
|
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
74
74
|
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
75
75
|
}
|
|
76
76
|
},
|
|
77
|
-
"servicenow-
|
|
77
|
+
"servicenow-update-set": {
|
|
78
78
|
"command": "node",
|
|
79
79
|
"args": [
|
|
80
|
-
"{{PROJECT_ROOT}}/dist/mcp/servicenow-
|
|
80
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-update-set-mcp.js"
|
|
81
81
|
],
|
|
82
|
-
"description": "
|
|
82
|
+
"description": "Update set management - create/switch/complete update sets, preview changes, export/import XML, ensure active update set, add artifacts to sets, batch operations",
|
|
83
|
+
"env": {
|
|
84
|
+
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
85
|
+
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
86
|
+
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"servicenow-development-assistant": {
|
|
90
|
+
"command": "node",
|
|
91
|
+
"args": [
|
|
92
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-development-assistant-mcp.js"
|
|
93
|
+
],
|
|
94
|
+
"description": "Development assistance - code generation, best practices, pattern recommendations, code review, performance optimization, ES5 conversion, documentation generation, requirement analysis (snow_find_artifact, snow_edit_artifact, snow_analyze_artifact)",
|
|
83
95
|
"env": {
|
|
84
96
|
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
85
97
|
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
@@ -91,7 +103,7 @@
|
|
|
91
103
|
"args": [
|
|
92
104
|
"{{PROJECT_ROOT}}/dist/mcp/servicenow-security-compliance-mcp.js"
|
|
93
105
|
],
|
|
94
|
-
"description": "Security policies, compliance rules (SOX/GDPR/HIPAA), audit trails, access control, vulnerability scanning, risk assessment",
|
|
106
|
+
"description": "Security and compliance - security policies, compliance rules (SOX/GDPR/HIPAA), audit trails, access control review, vulnerability scanning, risk assessment, encryption settings",
|
|
95
107
|
"env": {
|
|
96
108
|
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
97
109
|
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
@@ -103,46 +115,94 @@
|
|
|
103
115
|
"args": [
|
|
104
116
|
"{{PROJECT_ROOT}}/dist/mcp/servicenow-reporting-analytics-mcp.js"
|
|
105
117
|
],
|
|
106
|
-
"description": "
|
|
118
|
+
"description": "Reporting and analytics - create reports/dashboards/KPIs, data visualization, performance analytics, scheduled reports, data quality analysis, metrics collection, trend analysis",
|
|
107
119
|
"env": {
|
|
108
120
|
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
109
121
|
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
110
122
|
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
111
123
|
}
|
|
112
124
|
},
|
|
113
|
-
"
|
|
125
|
+
"servicenow-machine-learning": {
|
|
114
126
|
"command": "node",
|
|
115
127
|
"args": [
|
|
116
|
-
"{{PROJECT_ROOT}}/dist/mcp/
|
|
128
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-machine-learning-mcp.js"
|
|
117
129
|
],
|
|
118
|
-
"description": "
|
|
130
|
+
"description": "Machine learning - train/classify incidents (snow_train_classifier), change risk prediction, anomaly detection, forecast incidents, sentiment analysis, process optimization, hybrid recommendations with TensorFlow.js",
|
|
119
131
|
"env": {
|
|
120
|
-
"
|
|
132
|
+
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
133
|
+
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
134
|
+
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
121
135
|
}
|
|
122
136
|
},
|
|
123
|
-
"servicenow-
|
|
137
|
+
"servicenow-knowledge-catalog": {
|
|
124
138
|
"command": "node",
|
|
125
139
|
"args": [
|
|
126
|
-
"{{PROJECT_ROOT}}/dist/mcp/servicenow-
|
|
140
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-knowledge-catalog-mcp.js"
|
|
127
141
|
],
|
|
128
|
-
"description": "
|
|
142
|
+
"description": "Knowledge and catalog management - create/search/update knowledge articles, knowledge bases, catalog items, catalog variables, UI policies, client scripts, order items, discover catalogs",
|
|
129
143
|
"env": {
|
|
130
144
|
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
131
145
|
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
132
146
|
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
133
147
|
}
|
|
134
148
|
},
|
|
135
|
-
"servicenow-
|
|
149
|
+
"servicenow-change-virtualagent-pa": {
|
|
136
150
|
"command": "node",
|
|
137
151
|
"args": [
|
|
138
|
-
"{{PROJECT_ROOT}}/dist/mcp/servicenow-
|
|
152
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-change-virtualagent-pa-mcp.js"
|
|
139
153
|
],
|
|
140
|
-
"description": "
|
|
154
|
+
"description": "Change management, Virtual Agent, and Performance Analytics - create/manage change requests, CAB meetings, VA topics/blocks, conversations, PA indicators/widgets/breakdowns, thresholds, data collection",
|
|
141
155
|
"env": {
|
|
142
156
|
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
143
157
|
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
144
158
|
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
145
159
|
}
|
|
160
|
+
},
|
|
161
|
+
"servicenow-flow-workspace-mobile": {
|
|
162
|
+
"command": "node",
|
|
163
|
+
"args": [
|
|
164
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-flow-workspace-mobile-mcp.js"
|
|
165
|
+
],
|
|
166
|
+
"description": "Flow Designer, Workspace, and Mobile - create flows/actions/subflows/triggers, test flows, workspaces/tabs/lists, contextual panels, mobile app config, layouts, push notifications, offline sync",
|
|
167
|
+
"env": {
|
|
168
|
+
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
169
|
+
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
170
|
+
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"servicenow-cmdb-event-hr-csm-devops": {
|
|
174
|
+
"command": "node",
|
|
175
|
+
"args": [
|
|
176
|
+
"{{PROJECT_ROOT}}/dist/mcp/servicenow-cmdb-event-hr-csm-devops-mcp.js"
|
|
177
|
+
],
|
|
178
|
+
"description": "CMDB, Event Management, HR, CSM, and DevOps - create CIs/relationships, discovery, impact analysis, events/alerts, HR cases/onboarding, customer cases/accounts, DevOps pipelines/deployments",
|
|
179
|
+
"env": {
|
|
180
|
+
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
181
|
+
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
182
|
+
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"servicenow-advanced-features": {
|
|
186
|
+
"command": "node",
|
|
187
|
+
"args": [
|
|
188
|
+
"{{PROJECT_ROOT}}/dist/mcp/advanced/servicenow-advanced-features-mcp.js"
|
|
189
|
+
],
|
|
190
|
+
"description": "Advanced features - batch API operations (80% reduction), table relationships analysis, query optimization, field usage analysis, code pattern detection, process discovery, workflow analysis, documentation generation",
|
|
191
|
+
"env": {
|
|
192
|
+
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
193
|
+
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
|
194
|
+
"SNOW_CLIENT_SECRET": "{{SNOW_CLIENT_SECRET}}"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"snow-flow": {
|
|
198
|
+
"command": "node",
|
|
199
|
+
"args": [
|
|
200
|
+
"{{PROJECT_ROOT}}/dist/mcp/snow-flow-mcp.js"
|
|
201
|
+
],
|
|
202
|
+
"description": "Snow-Flow orchestration - swarm init/status, agent spawn/discover, task orchestrate/categorize, neural train/patterns (TensorFlow.js), memory store/search (timeout-protected), performance reports, token usage tracking",
|
|
203
|
+
"env": {
|
|
204
|
+
"SNOW_FLOW_ENV": "{{SNOW_FLOW_ENV}}"
|
|
205
|
+
}
|
|
146
206
|
}
|
|
147
207
|
}
|
|
148
208
|
}
|