snow-flow 3.6.23 โ†’ 3.6.25

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/website/tools.js CHANGED
@@ -1,20 +1,25 @@
1
1
  // Complete Snow-Flow MCP Tools Database
2
- // ๐Ÿ”๏ธ 17 MCP Servers with 200+ Tools
2
+ // ๐Ÿ”๏ธ 18 MCP Servers with 200+ Tools - v3.6.25
3
3
 
4
4
  const snowFlowTools = {
5
5
  "servicenow-deployment": {
6
6
  name: "๐Ÿš€ Deployment Server",
7
7
  description: "Widget and artifact deployment with COHERENCE VALIDATION",
8
- badge: "40+ Tools",
8
+ badge: "10+ Tools",
9
9
  tools: [
10
10
  {
11
11
  name: "snow_deploy",
12
- description: "Universal deployment tool for creating NEW ServiceNow artifacts. Features automatic update set management, permission escalation, retry logic, and comprehensive error recovery."
12
+ description: "Universal deployment tool for creating NEW ServiceNow artifacts. Now supports catalog_ui_policy! Features automatic update set management, permission escalation, retry logic, and comprehensive error recovery.",
13
+ highlight: "NEW: catalog_ui_policy support"
13
14
  },
14
15
  {
15
16
  name: "snow_update",
16
17
  description: "Updates existing ServiceNow artifacts (widgets, applications, etc.). Finds artifact by name or sys_id and modifies it."
17
18
  },
19
+ {
20
+ name: "snow_delete",
21
+ description: "Safely deletes ServiceNow artifacts with dependency checking and rollback capability."
22
+ },
18
23
  {
19
24
  name: "snow_validate_deployment",
20
25
  description: "Validates deployment artifacts for compatibility, dependencies, and permissions before execution. Returns validation report with potential issues."
@@ -24,864 +29,645 @@ const snowFlowTools = {
24
29
  description: "Performs safe rollback of a failed deployment to previous state. Tracks rollback history and provides recovery recommendations."
25
30
  },
26
31
  {
27
- name: "snow_deployment_status",
28
- description: "Retrieves comprehensive deployment status including active deployments, recent history, success rates, and performance metrics."
29
- },
30
- {
31
- name: "snow_export_artifact",
32
- description: "Exports ServiceNow artifacts (widgets, applications) to JSON/XML format for backup, version control, or migration purposes."
33
- },
34
- {
35
- name: "snow_import_artifact",
36
- description: "Imports previously exported artifacts from JSON/XML files into ServiceNow. Validates compatibility and handles dependencies automatically."
32
+ name: "snow_preview_widget",
33
+ description: "Preview widget functionality before deployment with live rendering."
37
34
  },
38
35
  {
39
- name: "snow_clone_instance_artifact",
40
- description: "Clones artifacts directly between ServiceNow instances (devโ†’testโ†’prod). Handles authentication, dependency resolution, and data migration."
36
+ name: "snow_widget_test",
37
+ description: "Test widget functionality with automated coherence validation."
41
38
  },
42
39
  {
43
- name: "snow_validate_sysid",
44
- description: "Validates sys_id existence and consistency across tables. Maintains artifact tracking for deployment integrity and rollback capabilities."
40
+ name: "snow_deployment_status",
41
+ description: "Retrieves comprehensive deployment status including active deployments, recent history, success rates, and performance metrics."
45
42
  },
46
43
  {
47
44
  name: "snow_deployment_debug",
48
45
  description: "Provides detailed debugging information including authentication status, permissions, active sessions, and recent deployment logs for troubleshooting."
49
- },
50
- {
51
- name: "snow_auth_diagnostics",
52
- description: "Performs comprehensive authentication and permission diagnostics. Tests OAuth tokens, API access, table permissions, and provides specific remediation steps."
53
- },
54
- {
55
- name: "snow_preview_widget",
56
- description: "Renders widget preview with test data for validation before deployment. Simulates Service Portal environment, checks dependencies, and validates data binding."
57
- },
58
- {
59
- name: "snow_widget_test",
60
- description: "Executes comprehensive widget testing with multiple data scenarios. Validates client/server scripts, API calls, dependencies, and generates coverage reports."
61
- },
62
- {
63
- name: "snow_create_solution_package",
64
- description: "Creates comprehensive solution packages containing multiple related artifacts (widgets, scripts, rules). Manages dependencies and generates deployment documentation."
65
46
  }
66
47
  ]
67
48
  },
49
+
68
50
  "servicenow-operations": {
69
51
  name: "โš™๏ธ Operations Server",
70
- description: "Core ServiceNow operations - universal table queries and CRUD operations",
71
- badge: "30+ Tools",
52
+ description: "Core ServiceNow operations and queries",
53
+ badge: "15+ Tools",
72
54
  tools: [
73
55
  {
74
56
  name: "snow_query_table",
75
- description: "Universal table querying with advanced filtering, ordering, pagination, and field selection. Supports complex queries across any ServiceNow table."
57
+ description: "Universal table querying with pagination. Supports complex queries, field selection, and relationship traversal."
76
58
  },
77
59
  {
78
- name: "snow_create_record",
79
- description: "Creates new records in any ServiceNow table with data validation, field mapping, and relationship management."
60
+ name: "snow_create_incident",
61
+ description: "Create and manage incidents with full field support and workflow integration."
80
62
  },
81
63
  {
82
- name: "snow_update_record",
83
- description: "Updates existing records with change tracking, conflict detection, and rollback capabilities."
64
+ name: "snow_update_record",
65
+ description: "Update any table record with field validation and audit trail."
84
66
  },
85
67
  {
86
68
  name: "snow_delete_record",
87
- description: "Safely deletes records with dependency checking, cascade options, and recovery mechanisms."
88
- },
89
- {
90
- name: "snow_get_by_sysid",
91
- description: "Retrieves specific records by sys_id with related data, field history, and reference resolution."
69
+ description: "Delete records with cascade checking and recovery options."
92
70
  },
93
71
  {
94
72
  name: "snow_discover_table_fields",
95
- description: "Discovers table schema including fields, types, references, and constraints for any ServiceNow table."
96
- },
97
- {
98
- name: "snow_create_incident",
99
- description: "Creates incidents with automatic categorization, priority assignment, and notification triggering."
100
- },
101
- {
102
- name: "snow_create_request",
103
- description: "Creates service requests with catalog item integration, approval workflows, and fulfillment tracking."
104
- },
105
- {
106
- name: "snow_create_problem",
107
- description: "Creates problem records with root cause analysis, related incident linking, and knowledge base integration."
73
+ description: "Discover table schema including field types, references, and constraints."
108
74
  },
109
75
  {
110
76
  name: "snow_cmdb_search",
111
- description: "Advanced CMDB searches with relationship mapping, dependency analysis, and impact assessment."
77
+ description: "Search Configuration Management Database with relationship mapping."
112
78
  },
113
79
  {
114
80
  name: "snow_user_lookup",
115
- description: "User management with role assignments, group memberships, and access control validation."
116
- },
117
- {
118
- name: "snow_group_management",
119
- description: "Group operations including member management, role assignments, and hierarchy navigation."
81
+ description: "Find users and groups with role and permission details."
120
82
  },
121
83
  {
122
- name: "snow_catalog_search",
123
- description: "Service catalog searches with availability checking, pricing, and ordering capabilities."
84
+ name: "snow_operational_metrics",
85
+ description: "Get real-time operational metrics and performance indicators."
124
86
  },
125
87
  {
126
88
  name: "snow_knowledge_search",
127
- description: "Knowledge base searches with relevance scoring, article rating, and usage analytics."
128
- },
129
- {
130
- name: "snow_batch_operations",
131
- description: "Bulk operations for data migration, cleanup, and batch processing with progress tracking."
89
+ description: "Search knowledge base with relevance ranking and categorization."
132
90
  }
133
91
  ]
134
92
  },
93
+
135
94
  "servicenow-automation": {
136
- name: "๐Ÿค– Automation Server",
137
- description: "Script execution with output capture, scheduling, and system automation",
138
- badge: "25+ Tools",
95
+ name: "๐Ÿค– Automation Server",
96
+ description: "Script execution and automation - ES5 ONLY!",
97
+ badge: "20+ Tools",
139
98
  tools: [
140
99
  {
141
100
  name: "snow_execute_script_with_output",
142
- description: "Executes background scripts with full output capture including gs.print, gs.info, gs.warn, and gs.error messages. ES5 JavaScript only."
101
+ description: "Execute ES5 scripts with full output capture (gs.print/info/warn/error). Remember: NO arrow functions, const/let, or template literals!"
102
+ },
103
+ {
104
+ name: "snow_execute_background_script",
105
+ description: "Execute background scripts with optional autoConfirm. ES5 ONLY - use var, function(), and string concatenation.",
106
+ highlight: "NEW: autoConfirm option"
107
+ },
108
+ {
109
+ name: "snow_confirm_script_execution",
110
+ description: "Confirm script execution after user approval with unique ID tracking."
143
111
  },
144
112
  {
145
113
  name: "snow_get_script_output",
146
- description: "Retrieves execution history and output from previously run background scripts with filtering and search capabilities."
114
+ description: "Retrieve script execution history and output logs."
147
115
  },
148
116
  {
149
117
  name: "snow_execute_script_sync",
150
- description: "Synchronous script execution with immediate results, timeout protection, and error handling."
118
+ description: "Synchronous script execution with timeout protection. ES5 only!"
151
119
  },
152
120
  {
153
121
  name: "snow_get_logs",
154
- description: "Accesses system logs including application logs, error logs, and audit trails with advanced filtering."
122
+ description: "Access system logs with filtering and real-time streaming."
155
123
  },
156
124
  {
157
125
  name: "snow_test_rest_connection",
158
- description: "Tests REST endpoint connectivity, authentication, and response validation with detailed diagnostics."
126
+ description: "Test REST integrations with request/response debugging."
159
127
  },
160
128
  {
161
- name: "snow_trace_execution",
162
- description: "Performance tracing for scripts and workflows with execution time analysis and bottleneck identification."
129
+ name: "snow_trace_execution",
130
+ description: "Trace script execution with performance metrics. ES5 compatible."
163
131
  },
164
132
  {
165
133
  name: "snow_schedule_job",
166
- description: "Creates and manages scheduled jobs with cron expressions, retry logic, and failure notifications."
134
+ description: "Create and manage scheduled jobs with cron syntax support."
167
135
  },
168
136
  {
169
137
  name: "snow_create_event",
170
- description: "Triggers system events and notifications with parameter passing and condition checking."
171
- },
172
- {
173
- name: "snow_create_notification",
174
- description: "Creates email notifications with template processing, recipient management, and delivery tracking."
175
- },
176
- {
177
- name: "snow_create_sla_definition",
178
- description: "Defines SLA rules with escalation paths, breach notifications, and performance tracking."
179
- },
180
- {
181
- name: "snow_workflow_management",
182
- description: "Workflow operations including execution tracking, state management, and activity monitoring."
183
- },
184
- {
185
- name: "snow_rest_message_test",
186
- description: "Comprehensive REST message testing with payload validation, authentication testing, and response analysis."
138
+ description: "Trigger system events for workflow and integration."
187
139
  }
188
140
  ]
189
141
  },
142
+
190
143
  "servicenow-platform-development": {
191
- name: "๐Ÿ’ป Platform Development Server",
192
- description: "Platform artifact creation - scripts, rules, policies, and configurations",
193
- badge: "20+ Tools",
144
+ name: "๐Ÿ› ๏ธ Platform Development Server",
145
+ description: "Platform development artifacts",
146
+ badge: "12+ Tools",
194
147
  tools: [
195
148
  {
196
149
  name: "snow_create_script_include",
197
- description: "Creates reusable Script Includes with proper scoping, error handling, and documentation generation."
150
+ description: "Create reusable server-side scripts with ES5 validation."
198
151
  },
199
152
  {
200
153
  name: "snow_create_business_rule",
201
- description: "Creates Business Rules with condition building, script generation, and execution timing optimization."
154
+ description: "Create business rules with condition builder and script validation."
202
155
  },
203
156
  {
204
157
  name: "snow_create_client_script",
205
- description: "Creates Client Scripts with browser compatibility checking, ES5 validation, and performance optimization."
158
+ description: "Create client-side scripts with form integration."
206
159
  },
207
160
  {
208
161
  name: "snow_create_ui_policy",
209
- description: "Creates UI Policies with field visibility, mandatory rules, and dynamic form behavior."
162
+ description: "Create UI policies for dynamic form behavior."
210
163
  },
211
164
  {
212
165
  name: "snow_create_ui_action",
213
- description: "Creates UI Actions with permission checking, condition evaluation, and script integration."
166
+ description: "Create UI actions for custom form buttons and menu items."
214
167
  },
215
168
  {
216
169
  name: "snow_create_ui_page",
217
- description: "Creates UI Pages with layout design, security validation, and responsive functionality."
218
- },
219
- {
220
- name: "snow_create_acl",
221
- description: "Creates Access Control Lists with role-based permissions, field-level security, and inheritance rules."
222
- },
223
- {
224
- name: "snow_create_dictionary_entry",
225
- description: "Creates dictionary entries with field definitions, validation rules, and reference configurations."
226
- },
227
- {
228
- name: "snow_create_table",
229
- description: "Creates new tables with proper naming conventions, field definitions, and relationship setup."
230
- },
231
- {
232
- name: "snow_create_catalog_item",
233
- description: "Creates service catalog items with variables, workflows, and fulfillment processes."
170
+ description: "Create UI pages with Jelly template support."
234
171
  }
235
172
  ]
236
173
  },
174
+
237
175
  "servicenow-integration": {
238
- name: "๐Ÿ”— Integration Server",
239
- description: "REST/SOAP integrations, data imports, and external system connectivity",
240
- badge: "15+ Tools",
176
+ name: "๐Ÿ”Œ Integration Server",
177
+ description: "Integration and data management",
178
+ badge: "10+ Tools",
241
179
  tools: [
242
180
  {
243
181
  name: "snow_create_rest_message",
244
- description: "Creates REST message configurations with authentication, headers, and endpoint management."
245
- },
246
- {
247
- name: "snow_create_soap_message",
248
- description: "Creates SOAP web service integrations with WSDL processing and method generation."
182
+ description: "Create REST integrations with authentication and error handling."
249
183
  },
250
184
  {
251
185
  name: "snow_create_transform_map",
252
- description: "Creates data transformation maps for import set processing with field mapping and validation."
186
+ description: "Create data transformation maps for import/export."
253
187
  },
254
188
  {
255
189
  name: "snow_create_import_set",
256
- description: "Manages import sets for data migration with error handling and progress tracking."
190
+ description: "Manage import sets with field mapping and validation."
257
191
  },
258
192
  {
259
193
  name: "snow_test_web_service",
260
- description: "Tests web service connectivity and functionality with payload validation and response analysis."
194
+ description: "Test web services with request/response inspection."
261
195
  },
262
196
  {
263
197
  name: "snow_configure_email",
264
- description: "Configures email settings including SMTP, authentication, and delivery options."
265
- },
266
- {
267
- name: "snow_create_oauth_provider",
268
- description: "Creates OAuth providers for secure API access with token management and scope control."
269
- },
270
- {
271
- name: "snow_endpoint_discovery",
272
- description: "Discovers available endpoints and their capabilities with automatic documentation generation."
273
- },
274
- {
275
- name: "snow_integration_testing",
276
- description: "Comprehensive integration testing with load simulation, error injection, and performance analysis."
198
+ description: "Configure email notifications and inbound processing."
277
199
  }
278
200
  ]
279
201
  },
202
+
280
203
  "servicenow-system-properties": {
281
- name: "โš™๏ธ System Properties Server",
282
- description: "Configuration management via ServiceNow system properties",
283
- badge: "10+ Tools",
204
+ name: "๐Ÿ“Š System Properties Server",
205
+ description: "System property management",
206
+ badge: "12 Tools",
284
207
  tools: [
285
208
  {
286
209
  name: "snow_property_get",
287
- description: "Retrieves system property values with inheritance checking and default value handling."
210
+ description: "Retrieve system property values with type conversion."
288
211
  },
289
212
  {
290
- name: "snow_property_set",
291
- description: "Sets system property values with validation, type checking, and change tracking."
213
+ name: "snow_property_set",
214
+ description: "Set system properties with validation and change tracking."
292
215
  },
293
216
  {
294
217
  name: "snow_property_list",
295
- description: "Lists properties by pattern matching with filtering, sorting, and categorization."
218
+ description: "List properties by pattern with filtering and sorting."
296
219
  },
297
220
  {
298
221
  name: "snow_property_delete",
299
- description: "Safely removes system properties with dependency checking and backup creation."
222
+ description: "Remove properties with cascade and dependency checking."
300
223
  },
301
224
  {
302
225
  name: "snow_property_bulk_update",
303
- description: "Bulk property operations for configuration management and environment setup."
226
+ description: "Bulk property operations with transaction support."
304
227
  },
305
228
  {
306
229
  name: "snow_property_export",
307
- description: "Exports property configurations to JSON format for backup and version control."
230
+ description: "Export properties to JSON for backup and migration."
308
231
  },
309
232
  {
310
- name: "snow_property_import",
311
- description: "Imports property configurations from JSON with validation and conflict resolution."
312
- },
313
- {
314
- name: "snow_property_validate",
315
- description: "Validates property values against constraints and business rules."
316
- },
317
- {
318
- name: "snow_property_search",
319
- description: "Advanced property search with pattern matching and value filtering."
233
+ name: "snow_property_import",
234
+ description: "Import properties from JSON with conflict resolution."
320
235
  }
321
236
  ]
322
237
  },
238
+
323
239
  "servicenow-update-set": {
324
240
  name: "๐Ÿ“ฆ Update Set Server",
325
- description: "Change management and deployment with update set lifecycle",
326
- badge: "10+ Tools",
241
+ description: "Change management and deployment",
242
+ badge: "6 Tools",
327
243
  tools: [
328
244
  {
329
- name: "snow_create_update_set",
330
- description: "Creates new update sets with automatic naming, description generation, and proper state management for change tracking."
331
- },
332
- {
333
- name: "snow_switch_update_set",
334
- description: "Switches active update set with validation and conflict detection. Ensures clean transitions between development phases."
335
- },
336
- {
337
- name: "snow_complete_update_set",
338
- description: "Marks update sets as complete with validation checks, dependency verification, and deployment readiness assessment."
245
+ name: "snow_update_set_create",
246
+ description: "Create new update sets with proper scoping."
339
247
  },
340
248
  {
341
- name: "snow_preview_update_set",
342
- description: "Previews update set changes including impact analysis, conflict detection, and rollback requirements before deployment."
249
+ name: "snow_update_set_switch",
250
+ description: "Switch active update set for change tracking."
343
251
  },
344
252
  {
345
- name: "snow_export_update_set",
346
- description: "Exports update sets to XML format with compression, metadata inclusion, and version control integration."
253
+ name: "snow_update_set_complete",
254
+ description: "Mark update set as complete with validation."
347
255
  },
348
256
  {
349
- name: "snow_import_update_set",
350
- description: "Imports update sets from XML files with dependency resolution, conflict handling, and rollback preparation."
257
+ name: "snow_update_set_export",
258
+ description: "Export update set as XML for deployment."
351
259
  },
352
260
  {
353
- name: "snow_rollback_update_set",
354
- description: "Performs safe rollback of update sets with dependency tracking, data preservation, and system state restoration."
261
+ name: "snow_ensure_active_update_set",
262
+ description: "Ensure an active update set exists before changes."
355
263
  }
356
264
  ]
357
265
  },
266
+
358
267
  "servicenow-development-assistant": {
359
- name: "๐ŸŽฏ Development Assistant Server",
360
- description: "Intelligent artifact search, editing, and development assistance",
361
- badge: "15+ Tools",
268
+ name: "๐Ÿง  Development Assistant Server",
269
+ description: "Intelligent artifact search and management",
270
+ badge: "8+ Tools",
362
271
  tools: [
363
272
  {
364
273
  name: "snow_find_artifact",
365
- description: "Universal artifact finder with fuzzy matching, type filtering, and relationship discovery across all ServiceNow components."
274
+ description: "Find any ServiceNow artifact by name, type, or pattern."
366
275
  },
367
276
  {
368
277
  name: "snow_edit_artifact",
369
- description: "Intelligent artifact editing with change tracking, validation, and automatic backup creation for safe modifications."
278
+ description: "Edit existing artifacts with intelligent field mapping."
370
279
  },
371
280
  {
372
281
  name: "snow_get_by_sysid",
373
- description: "Retrieves artifacts by sys_id with complete metadata, relationships, and usage analysis for comprehensive understanding."
282
+ description: "Get any artifact by sys_id with full metadata."
374
283
  },
375
284
  {
376
285
  name: "snow_analyze_artifact",
377
- description: "Deep artifact analysis including dependencies, performance impact, security implications, and optimization opportunities."
286
+ description: "Analyze artifact structure and dependencies."
378
287
  },
379
288
  {
380
289
  name: "snow_comprehensive_search",
381
- description: "Advanced search across all ServiceNow tables with relevance scoring, context awareness, and intelligent filtering."
290
+ description: "Deep search across all ServiceNow tables."
382
291
  },
383
292
  {
384
293
  name: "snow_analyze_requirements",
385
- description: "Analyzes development requirements with feasibility assessment, resource estimation, and implementation roadmap generation."
386
- },
387
- {
388
- name: "snow_generate_code",
389
- description: "AI-powered code generation with ServiceNow best practices, ES5 compliance, and pattern recognition."
390
- },
391
- {
392
- name: "snow_suggest_pattern",
393
- description: "Recommends design patterns based on context, requirements, and ServiceNow architectural principles."
394
- },
395
- {
396
- name: "snow_review_code",
397
- description: "Comprehensive code review with security analysis, performance optimization, and maintainability scoring."
398
- },
399
- {
400
- name: "snow_optimize_performance",
401
- description: "Performance optimization recommendations with bottleneck identification and solution prioritization."
294
+ description: "Analyze development requirements and suggest implementation."
402
295
  }
403
296
  ]
404
297
  },
298
+
405
299
  "servicenow-security-compliance": {
406
300
  name: "๐Ÿ”’ Security & Compliance Server",
407
- description: "Security policy management and compliance auditing",
408
- badge: "15+ Tools",
301
+ description: "Security and compliance management",
302
+ badge: "10+ Tools",
409
303
  tools: [
410
304
  {
411
305
  name: "snow_create_security_policy",
412
- description: "Creates comprehensive security policies with role-based access controls, field encryption, and audit trail configuration."
306
+ description: "Create security policies with compliance mapping."
413
307
  },
414
308
  {
415
309
  name: "snow_audit_compliance",
416
- description: "Performs SOX, GDPR, HIPAA compliance auditing with automated reporting and remediation recommendations."
310
+ description: "Audit for SOX, GDPR, HIPAA compliance requirements."
417
311
  },
418
312
  {
419
313
  name: "snow_scan_vulnerabilities",
420
- description: "Security vulnerability scanning across scripts, integrations, and configurations with risk prioritization."
421
- },
422
- {
423
- name: "snow_assess_risk",
424
- description: "Risk assessment for changes and configurations with impact scoring and mitigation strategy recommendations."
314
+ description: "Scan for security vulnerabilities and misconfigurations."
425
315
  },
426
316
  {
427
317
  name: "snow_review_access_control",
428
- description: "Access Control List review with permission analysis, role optimization, and security gap identification."
429
- },
430
- {
431
- name: "snow_encrypt_fields",
432
- description: "Field-level encryption setup with key management, performance impact analysis, and compliance verification."
433
- },
434
- {
435
- name: "snow_configure_sso",
436
- description: "Single Sign-On configuration with SAML, OAuth integration, and security protocol optimization."
437
- },
438
- {
439
- name: "snow_audit_user_access",
440
- description: "User access auditing with role analysis, permission tracking, and compliance reporting."
441
- },
442
- {
443
- name: "snow_security_dashboard",
444
- description: "Security metrics dashboard with real-time threat monitoring and compliance status visualization."
318
+ description: "Review and validate ACL configurations."
445
319
  }
446
320
  ]
447
321
  },
322
+
448
323
  "servicenow-reporting-analytics": {
449
- name: "๐Ÿ“Š Reporting & Analytics Server",
450
- description: "Advanced reporting and data visualization with KPI management",
451
- badge: "20+ Tools",
324
+ name: "๐Ÿ“ˆ Reporting & Analytics Server",
325
+ description: "Reporting and data visualization",
326
+ badge: "10+ Tools",
452
327
  tools: [
453
328
  {
454
329
  name: "snow_create_report",
455
- description: "Creates advanced reports with custom filters, aggregations, and interactive visualizations using real ServiceNow data."
330
+ description: "Create reports with charts and scheduling."
456
331
  },
457
332
  {
458
333
  name: "snow_create_dashboard",
459
- description: "Builds comprehensive dashboards with real-time data, drill-down capabilities, and responsive design."
334
+ description: "Create interactive dashboards with widgets."
460
335
  },
461
336
  {
462
337
  name: "snow_define_kpi",
463
- description: "Defines Key Performance Indicators with thresholds, alerting, and automated tracking across business processes."
338
+ description: "Define KPIs with targets and thresholds."
464
339
  },
465
340
  {
466
341
  name: "snow_schedule_report",
467
- description: "Schedules automated report delivery with customizable frequencies, formats, and recipient management."
342
+ description: "Schedule report delivery via email or portal."
468
343
  },
469
344
  {
470
345
  name: "snow_analyze_data_quality",
471
- description: "Data quality analysis with completeness scoring, consistency checking, and cleansing recommendations."
472
- },
473
- {
474
- name: "snow_create_chart",
475
- description: "Creates interactive charts with multiple visualization types, real-time updates, and export capabilities."
476
- },
477
- {
478
- name: "snow_trend_analysis",
479
- description: "Advanced trend analysis with pattern recognition, forecasting, and anomaly detection using statistical models."
480
- },
481
- {
482
- name: "snow_benchmark_performance",
483
- description: "Performance benchmarking against industry standards and historical data with improvement recommendations."
484
- },
485
- {
486
- name: "snow_export_analytics",
487
- description: "Exports analytics data in multiple formats (Excel, PDF, CSV) with customizable layouts and branding."
488
- },
489
- {
490
- name: "snow_real_time_metrics",
491
- description: "Real-time metrics monitoring with live updates, threshold alerting, and automatic refresh capabilities."
346
+ description: "Analyze data quality and integrity issues."
492
347
  }
493
348
  ]
494
349
  },
350
+
495
351
  "servicenow-machine-learning": {
496
- name: "๐Ÿง  Machine Learning Server",
497
- description: "AI/ML capabilities with TensorFlow.js and native ML integration",
498
- badge: "20+ Tools",
352
+ name: "๐Ÿค– Machine Learning Server",
353
+ description: "AI/ML capabilities with TensorFlow.js",
354
+ badge: "10+ Tools",
499
355
  tools: [
500
356
  {
501
357
  name: "ml_train_incident_classifier",
502
- description: "Train LSTM neural networks for incident classification with intelligent data selection and balanced datasets."
358
+ description: "Train LSTM neural network for incident classification."
503
359
  },
504
360
  {
505
361
  name: "ml_predict_change_risk",
506
- description: "Predict change request risks using machine learning with confidence scoring and risk factor analysis."
362
+ description: "Predict change request risk levels using ML models."
507
363
  },
508
364
  {
509
365
  name: "ml_detect_anomalies",
510
- description: "Anomaly detection in system performance, user behavior, and data patterns using statistical models."
366
+ description: "Detect anomalies in metrics and patterns."
511
367
  },
512
368
  {
513
369
  name: "ml_forecast_incidents",
514
- description: "Incident volume forecasting with time series analysis, seasonality detection, and capacity planning."
370
+ description: "Time series forecasting for incident volumes."
515
371
  },
516
372
  {
517
373
  name: "ml_performance_analytics",
518
- description: "Integration with ServiceNow's native Performance Analytics ML for KPI forecasting and trend analysis."
519
- },
520
- {
521
- name: "ml_hybrid_recommendation",
522
- description: "Hybrid ML recommendations combining native ML with TensorFlow.js for optimal accuracy and performance."
523
- },
524
- {
525
- name: "ml_sentiment_analysis",
526
- description: "Text sentiment analysis for tickets, surveys, and feedback with emotion scoring and trend tracking."
527
- },
528
- {
529
- name: "ml_cluster_analysis",
530
- description: "Data clustering for incident categorization, user segmentation, and pattern discovery."
531
- },
532
- {
533
- name: "ml_natural_language",
534
- description: "Natural language processing for automated ticket routing, content extraction, and response generation."
535
- },
536
- {
537
- name: "ml_predictive_maintenance",
538
- description: "Predictive maintenance modeling for CMDB assets with failure prediction and maintenance scheduling."
374
+ description: "Native Performance Analytics ML integration."
539
375
  }
540
376
  ]
541
377
  },
378
+
542
379
  "servicenow-knowledge-catalog": {
543
- name: "๐Ÿ“š Knowledge & Catalog Server",
380
+ name: "๐Ÿ“š Knowledge & Catalog Server",
544
381
  description: "Knowledge base and service catalog management",
545
- badge: "14+ Tools",
382
+ badge: "15+ Tools",
546
383
  tools: [
547
384
  {
548
385
  name: "snow_create_knowledge_article",
549
- description: "Creates knowledge articles with rich content formatting, approval workflows, and automatic categorization."
386
+ description: "Create knowledge articles with KB validation. Now prevents orphaned articles by validating knowledge base exists!",
387
+ highlight: "v3.6.25: KB validation added"
550
388
  },
551
389
  {
552
390
  name: "snow_search_knowledge",
553
- description: "Advanced knowledge base search with relevance scoring, content analysis, and usage analytics."
391
+ description: "Search knowledge base with relevance scoring."
554
392
  },
555
393
  {
556
394
  name: "snow_create_catalog_item",
557
- description: "Creates service catalog items with variables, workflows, and approval processes for service delivery."
395
+ description: "Create service catalog items with workflow."
558
396
  },
559
397
  {
560
398
  name: "snow_create_catalog_variable",
561
- description: "Creates catalog variables with validation, dependencies, and dynamic behavior for enhanced user experience."
399
+ description: "Create catalog variables in correct table (item_option_new). Fixed in v3.6.23!",
400
+ highlight: "v3.6.23: Table fix"
562
401
  },
563
402
  {
564
403
  name: "snow_create_catalog_ui_policy",
565
- description: "Creates UI policies for catalog items with field visibility, mandatory rules, and dynamic form behavior."
404
+ description: "Create catalog UI policies with conditions and actions. Enhanced debugging in v3.6.22.",
405
+ highlight: "v3.6.22: Enhanced debugging"
566
406
  },
567
407
  {
568
408
  name: "snow_order_catalog_item",
569
- description: "Processes catalog item orders with approval routing, fulfillment tracking, and status notifications."
409
+ description: "Order catalog items programmatically."
570
410
  },
571
411
  {
572
412
  name: "snow_discover_catalogs",
573
- description: "Discovers available service catalogs with permissions, categories, and item availability analysis."
574
- },
575
- {
576
- name: "snow_knowledge_analytics",
577
- description: "Knowledge base analytics with usage patterns, content effectiveness, and improvement recommendations."
413
+ description: "Discover available service catalogs."
578
414
  },
579
415
  {
580
- name: "snow_catalog_analytics",
581
- description: "Service catalog analytics with ordering patterns, fulfillment metrics, and user satisfaction analysis."
416
+ name: "snow_create_knowledge_base",
417
+ description: "Create new knowledge bases with proper configuration."
582
418
  },
583
419
  {
584
- name: "snow_content_management",
585
- description: "Content lifecycle management with versioning, approval workflows, and automated archiving."
420
+ name: "snow_discover_knowledge_bases",
421
+ description: "List all available knowledge bases."
586
422
  }
587
423
  ]
588
424
  },
425
+
589
426
  "servicenow-change-virtualagent-pa": {
590
427
  name: "๐Ÿ”„ Change, Virtual Agent & PA Server",
591
- description: "Change management, Virtual Agent NLU, and Performance Analytics",
592
- badge: "19+ Tools",
428
+ description: "Change management, Virtual Agent, and Performance Analytics",
429
+ badge: "15+ Tools",
593
430
  tools: [
594
431
  {
595
432
  name: "snow_create_change_request",
596
- description: "Creates change requests with risk assessment, approval workflows, and automated scheduling."
433
+ description: "Create change requests with CAB integration."
597
434
  },
598
435
  {
599
436
  name: "snow_schedule_cab_meeting",
600
- description: "Schedules Change Advisory Board meetings with attendee management and agenda generation."
601
- },
602
- {
603
- name: "snow_assess_change_risk",
604
- description: "Assesses change risks with impact analysis, conflict detection, and rollback planning."
437
+ description: "Schedule CAB meetings with member notifications."
605
438
  },
606
439
  {
607
440
  name: "snow_create_va_topic",
608
- description: "Creates Virtual Agent topics with natural language understanding and response generation."
609
- },
610
- {
611
- name: "snow_train_va_model",
612
- description: "Trains Virtual Agent NLU models with intent recognition and entity extraction."
441
+ description: "Create Virtual Agent conversation topics."
613
442
  },
614
443
  {
615
444
  name: "snow_send_va_message",
616
- description: "Sends Virtual Agent messages with context awareness and conversation flow management."
445
+ description: "Send messages through Virtual Agent."
617
446
  },
618
447
  {
619
448
  name: "snow_create_pa_indicator",
620
- description: "Creates Performance Analytics indicators with data collection and threshold monitoring."
449
+ description: "Create Performance Analytics indicators."
621
450
  },
622
451
  {
623
452
  name: "snow_create_pa_widget",
624
- description: "Creates PA dashboard widgets with real-time data visualization and interactive capabilities."
453
+ description: "Create PA dashboard widgets."
625
454
  },
626
455
  {
627
456
  name: "snow_get_pa_scores",
628
- description: "Retrieves PA performance scores with trend analysis and benchmark comparisons."
629
- },
630
- {
631
- name: "snow_pa_breakdown",
632
- description: "PA data breakdown analysis with drill-down capabilities and root cause identification."
633
- },
634
- {
635
- name: "snow_change_calendar",
636
- description: "Change calendar management with conflict detection, maintenance windows, and capacity planning."
637
- },
638
- {
639
- name: "snow_emergency_change",
640
- description: "Emergency change processing with expedited approval workflows and risk mitigation."
457
+ description: "Retrieve performance scores and trends."
641
458
  }
642
459
  ]
643
460
  },
461
+
644
462
  "servicenow-flow-workspace-mobile": {
645
463
  name: "๐Ÿ“ฑ Flow, Workspace & Mobile Server",
646
- description: "Flow Designer, Workspace configuration, and Mobile app management",
647
- badge: "20+ Tools",
464
+ description: "Flow Designer, Workspace configuration, and Mobile management",
465
+ badge: "12+ Tools",
648
466
  tools: [
649
467
  {
650
- name: "snow_create_flow",
651
- description: "Creates Flow Designer flows with drag-and-drop interface integration and automated testing."
468
+ name: "snow_list_flows",
469
+ description: "List and discover Flow Designer flows."
652
470
  },
653
471
  {
654
- name: "snow_create_flow_action",
655
- description: "Creates custom flow actions with input/output validation and error handling."
472
+ name: "snow_execute_flow",
473
+ description: "Execute flows programmatically with input data."
656
474
  },
657
475
  {
658
- name: "snow_test_flow",
659
- description: "Tests flows with multiple scenarios, data validation, and performance analysis."
476
+ name: "snow_get_flow_execution_status",
477
+ description: "Monitor flow execution status and results."
660
478
  },
661
479
  {
662
- name: "snow_flow_execution_history",
663
- description: "Analyzes flow execution history with performance metrics and failure analysis."
480
+ name: "snow_get_flow_details",
481
+ description: "Get detailed flow configuration and actions."
664
482
  },
665
483
  {
666
484
  name: "snow_create_workspace",
667
- description: "Creates Agent Workspace configurations with role-based layouts and productivity features."
668
- },
669
- {
670
- name: "snow_workspace_analytics",
671
- description: "Workspace usage analytics with productivity metrics and user experience analysis."
485
+ description: "Create and configure workspaces."
672
486
  },
673
487
  {
674
488
  name: "snow_configure_mobile_app",
675
- description: "Configures ServiceNow mobile app with custom branding, features, and security settings."
676
- },
677
- {
678
- name: "snow_create_mobile_screen",
679
- description: "Creates mobile app screens with responsive design and native functionality."
489
+ description: "Configure mobile app layouts and features."
680
490
  },
681
491
  {
682
492
  name: "snow_send_push_notification",
683
- description: "Sends push notifications with targeting, scheduling, and delivery tracking."
684
- },
685
- {
686
- name: "snow_configure_offline_sync",
687
- description: "Configures offline synchronization with data prioritization and conflict resolution."
688
- },
689
- {
690
- name: "snow_mobile_analytics",
691
- description: "Mobile app analytics with usage patterns, performance metrics, and user engagement analysis."
692
- },
693
- {
694
- name: "snow_workspace_optimization",
695
- description: "Workspace performance optimization with load time analysis and resource optimization."
493
+ description: "Send push notifications to mobile devices."
696
494
  }
697
495
  ]
698
496
  },
497
+
699
498
  "servicenow-cmdb-event-hr-csm-devops": {
700
- name: "๐Ÿ—„๏ธ CMDB, Event, HR, CSM & DevOps Server",
701
- description: "Configuration, Events, HR, Customer Service, DevOps integration",
702
- badge: "23+ Tools",
499
+ name: "๐Ÿข CMDB, Event, HR, CSM & DevOps Server",
500
+ description: "CMDB management, Event processing, HR services, Customer Service, and DevOps",
501
+ badge: "20+ Tools",
703
502
  tools: [
704
503
  {
705
504
  name: "snow_create_ci",
706
- description: "Creates Configuration Items with automated discovery, relationship mapping, and lifecycle management."
505
+ description: "Create Configuration Items with relationship mapping."
707
506
  },
708
507
  {
709
508
  name: "snow_create_ci_relationship",
710
- description: "Creates CI relationships with impact analysis, dependency mapping, and change propagation."
509
+ description: "Create relationships between CIs."
711
510
  },
712
511
  {
713
- name: "snow_run_discovery",
714
- description: "Runs ServiceNow Discovery with credential management, scheduling, and results analysis."
715
- },
716
- {
717
- name: "snow_cmdb_health_check",
718
- description: "CMDB health assessment with data quality scoring, relationship validation, and cleansing recommendations."
512
+ name: "snow_run_discovery",
513
+ description: "Run discovery for infrastructure mapping."
719
514
  },
720
515
  {
721
516
  name: "snow_create_event",
722
- description: "Creates system events with correlation rules, severity assessment, and automated response triggers."
723
- },
724
- {
725
- name: "snow_event_correlation",
726
- description: "Event correlation analysis with pattern recognition, root cause identification, and noise reduction."
517
+ description: "Create events for correlation and alerting."
727
518
  },
728
519
  {
729
520
  name: "snow_create_hr_case",
730
- description: "Creates HR cases with automated routing, SLA tracking, and confidentiality controls."
521
+ description: "Create HR service cases with workflow."
731
522
  },
732
523
  {
733
524
  name: "snow_employee_onboarding",
734
- description: "Employee onboarding automation with task orchestration, access provisioning, and progress tracking."
735
- },
736
- {
737
- name: "snow_hr_analytics",
738
- description: "HR analytics with employee satisfaction, case resolution metrics, and trend analysis."
525
+ description: "Manage employee onboarding process."
739
526
  },
740
527
  {
741
528
  name: "snow_create_customer_case",
742
- description: "Creates customer service cases with priority routing, escalation rules, and satisfaction tracking."
743
- },
744
- {
745
- name: "snow_customer_portal",
746
- description: "Customer portal configuration with self-service capabilities and knowledge integration."
529
+ description: "Create customer service cases."
747
530
  },
748
531
  {
749
532
  name: "snow_create_devops_pipeline",
750
- description: "Creates DevOps deployment pipelines with ServiceNow integration and automated testing."
751
- },
752
- {
753
- name: "snow_ci_impact_analysis",
754
- description: "CI impact analysis with service mapping, business impact assessment, and change planning."
755
- },
756
- {
757
- name: "snow_asset_management",
758
- description: "IT asset management with lifecycle tracking, cost optimization, and compliance monitoring."
533
+ description: "Create and manage DevOps pipelines."
759
534
  }
760
535
  ]
761
536
  },
537
+
762
538
  "servicenow-advanced-features": {
763
539
  name: "โšก Advanced Features Server",
764
540
  description: "Advanced optimization and analysis capabilities",
765
- badge: "14+ Tools",
541
+ badge: "15+ Tools",
766
542
  tools: [
767
543
  {
768
544
  name: "snow_batch_api",
769
- description: "Smart batch API operations with 80% API call reduction through intelligent query optimization and parallel execution."
545
+ description: "Batch API operations for 80% performance improvement."
770
546
  },
771
547
  {
772
548
  name: "snow_get_table_relationships",
773
- description: "Deep relationship discovery with visual Mermaid diagrams, impact analysis, and performance optimization recommendations."
549
+ description: "Analyze table relationships and dependencies."
774
550
  },
775
551
  {
776
552
  name: "snow_analyze_query",
777
- description: "Query performance analysis with bottleneck detection, index recommendations, and execution time prediction."
553
+ description: "Optimize queries for better performance."
778
554
  },
779
555
  {
780
- name: "snow_analyze_field_usage",
781
- description: "Field usage intelligence with deprecation analysis, technical debt scoring, and optimization opportunities."
556
+ name: "snow_detect_code_patterns",
557
+ description: "Detect code patterns and anti-patterns."
782
558
  },
783
559
  {
784
- name: "snow_create_migration_plan",
785
- description: "Automated migration planning with risk assessment, transformation scripts, and rollback strategies."
560
+ name: "snow_discover_process",
561
+ description: "Discover business processes from data."
786
562
  },
787
563
  {
788
- name: "snow_analyze_table_deep",
789
- description: "Multi-dimensional table analysis including structure, data quality, performance, security, and compliance assessment."
790
- },
564
+ name: "snow_generate_documentation",
565
+ description: "Auto-generate technical documentation."
566
+ }
567
+ ]
568
+ },
569
+
570
+ "servicenow-local-development": {
571
+ name: "๐Ÿ’ป Local Development Server",
572
+ description: "Bridge between ServiceNow and Claude Code native tools",
573
+ badge: "10+ Tools",
574
+ tools: [
791
575
  {
792
- name: "snow_detect_code_patterns",
793
- description: "Advanced pattern recognition with anti-pattern detection, security scanning, and maintainability scoring."
576
+ name: "snow_pull_artifact",
577
+ description: "Pull ServiceNow artifacts to local files for native editing. Supports widgets, flows, scripts, and more!",
578
+ highlight: "Use for large widgets!"
794
579
  },
795
580
  {
796
- name: "snow_predict_change_impact",
797
- description: "AI-powered change impact prediction with risk assessment, dependency analysis, and confidence scoring."
581
+ name: "snow_push_artifact",
582
+ description: "Push local changes back to ServiceNow with validation."
798
583
  },
799
584
  {
800
- name: "snow_generate_documentation",
801
- description: "Intelligent documentation generation with multiple formats, relationship diagrams, and usage examples."
585
+ name: "snow_validate_artifact_coherence",
586
+ description: "Validate widget coherence between HTML, client, and server scripts."
802
587
  },
803
588
  {
804
- name: "snow_refactor_code",
805
- description: "AI-driven code refactoring with performance optimization, security hardening, and preview validation."
589
+ name: "snow_list_supported_artifacts",
590
+ description: "List all supported artifact types for local sync."
806
591
  },
807
592
  {
808
- name: "snow_discover_process",
809
- description: "Process mining from event logs with variant analysis, bottleneck identification, and ROI calculation."
593
+ name: "snow_sync_status",
594
+ description: "Check sync status of local artifacts."
810
595
  },
811
596
  {
812
- name: "snow_analyze_workflow_execution",
813
- description: "Workflow execution analysis vs. designed processes with SLA monitoring and resource optimization."
597
+ name: "snow_sync_cleanup",
598
+ description: "Clean up local files after sync operations."
814
599
  },
815
600
  {
816
- name: "snow_monitor_process",
817
- description: "Real-time process monitoring with anomaly detection, trend analysis, and predictive failure detection."
601
+ name: "snow_convert_to_es5",
602
+ description: "Convert modern JavaScript to ES5 for ServiceNow compatibility."
818
603
  }
819
604
  ]
820
605
  },
606
+
821
607
  "snow-flow-orchestration": {
822
- name: "๐Ÿ‘‘ Orchestration Server",
608
+ name: "๐ŸŽฏ Snow-Flow Orchestration Server",
823
609
  description: "Multi-agent coordination and task management",
824
- badge: "25+ Tools",
610
+ badge: "8 Tools",
825
611
  tools: [
826
612
  {
827
613
  name: "swarm_init",
828
- description: "Initialize multi-agent swarms with strategy selection, coordination protocols, and performance monitoring."
614
+ description: "Initialize multi-agent swarms for complex tasks."
829
615
  },
830
616
  {
831
617
  name: "agent_spawn",
832
- description: "Create specialized AI agents (researcher, coder, analyst, tester) with role-specific capabilities."
618
+ description: "Create specialized AI agents (researcher, coder, analyst)."
833
619
  },
834
620
  {
835
621
  name: "task_orchestrate",
836
- description: "Orchestrate complex multi-step tasks with dependency management and parallel execution."
622
+ description: "Orchestrate complex multi-step tasks."
837
623
  },
838
624
  {
839
625
  name: "memory_search",
840
- description: "Search persistent memory with semantic matching and context-aware retrieval."
841
- },
842
- {
843
- name: "memory_store",
844
- description: "Store data in persistent memory with versioning, tagging, and relationship mapping."
626
+ description: "Search persistent memory across sessions."
845
627
  },
846
628
  {
847
629
  name: "neural_train",
848
- description: "Train TensorFlow.js neural networks with distributed computing and model optimization."
630
+ description: "Train neural networks using TensorFlow.js."
849
631
  },
850
632
  {
851
633
  name: "performance_report",
852
- description: "Generate comprehensive performance reports with metrics, analysis, and optimization recommendations."
853
- },
854
- {
855
- name: "agent_coordinate",
856
- description: "Coordinate multiple agents with workload balancing, conflict resolution, and progress tracking."
857
- },
858
- {
859
- name: "task_queue_manage",
860
- description: "Advanced task queue management with priority scheduling and resource allocation."
861
- },
862
- {
863
- name: "swarm_monitor",
864
- description: "Real-time swarm monitoring with performance visualization and bottleneck identification."
865
- },
866
- {
867
- name: "workflow_optimize",
868
- description: "Workflow optimization with execution path analysis and performance tuning recommendations."
869
- },
870
- {
871
- name: "agent_analytics",
872
- description: "Agent performance analytics with productivity metrics and capability assessment."
873
- },
874
- {
875
- name: "collaboration_hub",
876
- description: "Multi-agent collaboration hub with communication protocols and shared workspace management."
634
+ description: "Generate comprehensive performance reports."
877
635
  }
878
636
  ]
879
637
  }
880
638
  };
881
639
 
882
- // Export for use in website
640
+ // Function to search tools
641
+ function searchTools(query) {
642
+ const results = [];
643
+ const searchTerm = query.toLowerCase();
644
+
645
+ Object.entries(snowFlowTools).forEach(([serverId, server]) => {
646
+ server.tools.forEach(tool => {
647
+ if (tool.name.toLowerCase().includes(searchTerm) ||
648
+ tool.description.toLowerCase().includes(searchTerm)) {
649
+ results.push({
650
+ server: server.name,
651
+ serverId: serverId,
652
+ tool: tool
653
+ });
654
+ }
655
+ });
656
+ });
657
+
658
+ return results;
659
+ }
660
+
661
+ // Function to get all tools count
662
+ function getTotalToolsCount() {
663
+ let count = 0;
664
+ Object.values(snowFlowTools).forEach(server => {
665
+ count += server.tools.length;
666
+ });
667
+ return count;
668
+ }
669
+
670
+ // Export for use in other scripts
883
671
  if (typeof module !== 'undefined' && module.exports) {
884
- module.exports = snowFlowTools;
885
- } else if (typeof window !== 'undefined') {
886
- window.snowFlowTools = snowFlowTools;
672
+ module.exports = { snowFlowTools, searchTools, getTotalToolsCount };
887
673
  }