snow-flow 4.6.8 → 5.0.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.
- package/dist/agents/index.d.ts +4 -4
- package/dist/agents/index.js +11 -12
- package/dist/cli.js +15 -83
- package/dist/deprecated/base-agent.deprecated.d.ts +92 -0
- package/dist/deprecated/base-agent.deprecated.js +227 -0
- package/dist/deprecated/mcp-server-manager.deprecated.d.ts +106 -0
- package/dist/deprecated/mcp-server-manager.deprecated.js +466 -0
- package/dist/deprecated/queen-agent.deprecated.d.ts +186 -0
- package/dist/deprecated/queen-agent.deprecated.js +1178 -0
- package/dist/deprecated/real-agent-spawner.deprecated.d.ts +121 -0
- package/dist/deprecated/real-agent-spawner.deprecated.js +569 -0
- package/dist/health/system-health.d.ts +2 -3
- package/dist/health/system-health.js +17 -15
- package/dist/intelligence/performance-recommendations-engine.js +2 -4
- package/dist/mcp/servicenow-flow-workspace-mobile-mcp-enhanced.js +1 -37
- package/dist/mcp/servicenow-mcp-unified/config/tool-definitions.json +4000 -0
- package/dist/mcp/servicenow-mcp-unified/index.d.ts +18 -0
- package/dist/mcp/servicenow-mcp-unified/index.js +51 -0
- package/dist/mcp/servicenow-mcp-unified/scripts/validate-tools.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/scripts/validate-tools.js +89 -0
- package/dist/mcp/servicenow-mcp-unified/server.d.ts +57 -0
- package/dist/mcp/servicenow-mcp-unified/server.js +216 -0
- package/dist/mcp/servicenow-mcp-unified/shared/auth.d.ts +94 -0
- package/dist/mcp/servicenow-mcp-unified/shared/auth.js +331 -0
- package/dist/mcp/servicenow-mcp-unified/shared/error-handler.d.ts +103 -0
- package/dist/mcp/servicenow-mcp-unified/shared/error-handler.js +366 -0
- package/dist/mcp/servicenow-mcp-unified/shared/tool-registry.d.ts +75 -0
- package/dist/mcp/servicenow-mcp-unified/shared/tool-registry.js +352 -0
- package/dist/mcp/servicenow-mcp-unified/shared/types.d.ts +192 -0
- package/dist/mcp/servicenow-mcp-unified/shared/types.js +6 -0
- package/dist/mcp/servicenow-mcp-unified/tools/access-control/index.d.ts +5 -0
- package/dist/mcp/servicenow-mcp-unified/tools/access-control/index.js +16 -0
- package/dist/mcp/servicenow-mcp-unified/tools/access-control/snow_create_acl.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/access-control/snow_create_acl.js +41 -0
- package/dist/mcp/servicenow-mcp-unified/tools/access-control/snow_create_acl_role.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/access-control/snow_create_acl_role.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/access-control/snow_get_user_roles.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/access-control/snow_get_user_roles.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/access-control/snow_test_acl.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/access-control/snow_test_acl.js +49 -0
- package/dist/mcp/servicenow-mcp-unified/tools/adapters/index.d.ts +6 -0
- package/dist/mcp/servicenow-mcp-unified/tools/adapters/index.js +19 -0
- package/dist/mcp/servicenow-mcp-unified/tools/adapters/snow_jira_integration.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/adapters/snow_jira_integration.js +43 -0
- package/dist/mcp/servicenow-mcp-unified/tools/adapters/snow_ldap_sync.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/adapters/snow_ldap_sync.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/adapters/snow_oauth_provider.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/adapters/snow_oauth_provider.js +44 -0
- package/dist/mcp/servicenow-mcp-unified/tools/adapters/snow_saml_config.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/adapters/snow_saml_config.js +43 -0
- package/dist/mcp/servicenow-mcp-unified/tools/adapters/snow_webhook_config.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/adapters/snow_webhook_config.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/addons/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/addons/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/addons/snow_backup_instance.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/addons/snow_backup_instance.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/addons/snow_cicd_deploy.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/addons/snow_cicd_deploy.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/addons/snow_clone_instance.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/addons/snow_clone_instance.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/index.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/index.js +28 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_ai_classify.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_ai_classify.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_anomaly_detection.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_anomaly_detection.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_autocomplete.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_autocomplete.js +48 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_duplicate_detection.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_duplicate_detection.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_fuzzy_search.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_fuzzy_search.js +50 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_ml_predict.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_ml_predict.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_recommendation_engine.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_recommendation_engine.js +39 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_sentiment_analysis.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/advanced/snow_sentiment_analysis.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/aggregators/index.d.ts +2 -0
- package/dist/mcp/servicenow-mcp-unified/tools/aggregators/index.js +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/aggregators/snow_aggregate_metrics.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/aggregators/snow_aggregate_metrics.js +48 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ai-ml/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ai-ml/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ai-ml/snow_predict.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ai-ml/snow_predict.js +34 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ai-ml/snow_train_classifier.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ai-ml/snow_train_classifier.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/applications/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/applications/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/applications/snow_create_application.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/applications/snow_create_application.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/applications/snow_install_application.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/applications/snow_install_application.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/approvals/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/approvals/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/approvals/snow_approve_reject.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/approvals/snow_approve_reject.js +39 -0
- package/dist/mcp/servicenow-mcp-unified/tools/approvals/snow_get_pending_approvals.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/approvals/snow_get_pending_approvals.js +44 -0
- package/dist/mcp/servicenow-mcp-unified/tools/approvals/snow_request_approval.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/approvals/snow_request_approval.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/index.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/index.js +28 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_asset_compliance_report.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_asset_compliance_report.js +128 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_asset_discovery.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_asset_discovery.js +106 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_create_asset.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_create_asset.js +43 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_manage_software_license.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_manage_software_license.js +76 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_optimize_licenses.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_optimize_licenses.js +111 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_retire_asset.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_retire_asset.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_track_asset_lifecycle.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_track_asset_lifecycle.js +79 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_transfer_asset.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/asset/snow_transfer_asset.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/index.d.ts +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/index.js +25 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/snow_create_atf_test.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/snow_create_atf_test.js +65 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/snow_create_atf_test_step.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/snow_create_atf_test_step.js +73 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/snow_create_atf_test_suite.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/snow_create_atf_test_suite.js +84 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/snow_discover_atf_tests.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/snow_discover_atf_tests.js +72 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/snow_execute_atf_test.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/snow_execute_atf_test.js +111 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/snow_get_atf_results.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/atf/snow_get_atf_results.js +86 -0
- package/dist/mcp/servicenow-mcp-unified/tools/attachments/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/attachments/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/attachments/snow_delete_attachment.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/attachments/snow_delete_attachment.js +34 -0
- package/dist/mcp/servicenow-mcp-unified/tools/attachments/snow_get_attachments.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/attachments/snow_get_attachments.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/attachments/snow_upload_attachment.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/attachments/snow_upload_attachment.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/index.d.ts +22 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/index.js +61 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_confirm_script_execution.d.ts +14 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_confirm_script_execution.js +81 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_create_escalation_rule.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_create_escalation_rule.js +68 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_create_event_rule.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_create_event_rule.js +67 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_create_sla_definition.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_create_sla_definition.js +79 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_create_workflow_activity.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_create_workflow_activity.js +78 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_discover_automation_jobs.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_discover_automation_jobs.js +66 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_discover_events.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_discover_events.js +63 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_discover_schedules.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_discover_schedules.js +63 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_execute_background_script.d.ts +15 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_execute_background_script.js +232 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_execute_script_sync.d.ts +14 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_execute_script_sync.js +110 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_execute_script_with_output.d.ts +15 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_execute_script_with_output.js +155 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_get_logs.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_get_logs.js +130 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_get_script_output.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_get_script_output.js +92 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_property_manager.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_property_manager.js +166 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_rest_message_test_suite.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_rest_message_test_suite.js +135 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_test_rest_connection.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_test_rest_connection.js +132 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_test_scheduled_job.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_test_scheduled_job.js +86 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_trace_execution.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/automation/snow_trace_execution.js +127 -0
- package/dist/mcp/servicenow-mcp-unified/tools/business-rules/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/business-rules/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/business-rules/snow_create_business_rule.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/business-rules/snow_create_business_rule.js +56 -0
- package/dist/mcp/servicenow-mcp-unified/tools/business-rules/snow_disable_business_rule.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/business-rules/snow_disable_business_rule.js +34 -0
- package/dist/mcp/servicenow-mcp-unified/tools/calculators/index.d.ts +2 -0
- package/dist/mcp/servicenow-mcp-unified/tools/calculators/index.js +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/calculators/snow_calculate_sla_duration.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/calculators/snow_calculate_sla_duration.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/index.d.ts +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/index.js +28 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/snow_create_catalog_client_script.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/snow_create_catalog_client_script.js +60 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/snow_create_catalog_ui_policy.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/snow_create_catalog_ui_policy.js +118 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/snow_discover_catalogs.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/snow_discover_catalogs.js +68 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/snow_get_catalog_item_details.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/snow_get_catalog_item_details.js +85 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/snow_order_catalog_item.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/snow_order_catalog_item.js +81 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/snow_search_catalog.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/catalog/snow_search_catalog.js +87 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/index.d.ts +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/index.js +34 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_approve_change.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_approve_change.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_assess_change_risk.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_assess_change_risk.js +47 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_create_change.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_create_change.js +44 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_create_change_task.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_create_change_task.js +44 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_get_change_request.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_get_change_request.js +54 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_schedule_cab.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_schedule_cab.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_schedule_cab_meeting.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_schedule_cab_meeting.js +49 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_search_change_requests.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_search_change_requests.js +48 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_update_change_state.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/change/snow_update_change_state.js +61 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/index.d.ts +17 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/index.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_ci_health_check.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_ci_health_check.js +50 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_create_ci.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_create_ci.js +43 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_create_ci_relationship.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_create_ci_relationship.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_get_ci_details.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_get_ci_details.js +57 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_get_ci_history.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_get_ci_history.js +39 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_get_ci_impact.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_get_ci_impact.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_get_ci_relationships.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_get_ci_relationships.js +41 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_get_event_correlation.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_get_event_correlation.js +107 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_impact_analysis.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_impact_analysis.js +110 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_reconcile_ci.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_reconcile_ci.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_run_discovery.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_run_discovery.js +41 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_search_cmdb.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_search_cmdb.js +58 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_update_ci.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/cmdb/snow_update_ci.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/connectors/index.d.ts +6 -0
- package/dist/mcp/servicenow-mcp-unified/tools/connectors/index.js +19 -0
- package/dist/mcp/servicenow-mcp-unified/tools/connectors/snow_batch_request.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/connectors/snow_batch_request.js +53 -0
- package/dist/mcp/servicenow-mcp-unified/tools/connectors/snow_check_health.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/connectors/snow_check_health.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/connectors/snow_configure_connection.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/connectors/snow_configure_connection.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/connectors/snow_get_instance_info.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/connectors/snow_get_instance_info.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/connectors/snow_test_connection.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/connectors/snow_test_connection.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/converters/index.d.ts +5 -0
- package/dist/mcp/servicenow-mcp-unified/tools/converters/index.js +16 -0
- package/dist/mcp/servicenow-mcp-unified/tools/converters/snow_csv_to_json.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/converters/snow_csv_to_json.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/converters/snow_json_to_csv.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/converters/snow_json_to_csv.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/converters/snow_json_to_xml.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/converters/snow_json_to_xml.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/converters/snow_xml_to_json.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/converters/snow_xml_to_json.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/csm/index.d.ts +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/csm/index.js +16 -0
- package/dist/mcp/servicenow-mcp-unified/tools/csm/snow_create_customer_account.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/csm/snow_create_customer_account.js +50 -0
- package/dist/mcp/servicenow-mcp-unified/tools/csm/snow_create_entitlement.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/csm/snow_create_entitlement.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/csm/snow_get_customer_history.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/csm/snow_get_customer_history.js +54 -0
- package/dist/mcp/servicenow-mcp-unified/tools/dashboards/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/dashboards/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/dashboards/snow_add_dashboard_widget.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/dashboards/snow_add_dashboard_widget.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/dashboards/snow_create_dashboard.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/dashboards/snow_create_dashboard.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-management/index.d.ts +6 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-management/index.js +19 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-management/snow_bulk_update.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-management/snow_bulk_update.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-management/snow_create_choice.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-management/snow_create_choice.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-management/snow_create_field.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-management/snow_create_field.js +51 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-management/snow_create_table.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-management/snow_create_table.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-management/snow_data_export.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-management/snow_data_export.js +48 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-policies/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-policies/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-policies/snow_create_data_policy.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-policies/snow_create_data_policy.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-policies/snow_create_data_policy_rule.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/data-policies/snow_create_data_policy_rule.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/decoders/index.d.ts +2 -0
- package/dist/mcp/servicenow-mcp-unified/tools/decoders/index.js +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/decoders/snow_jwt_decode.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/decoders/snow_jwt_decode.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/index.d.ts +15 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/index.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_auth_diagnostics.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_auth_diagnostics.js +196 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_clone_instance_artifact.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_clone_instance_artifact.js +63 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_create_solution_package.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_create_solution_package.js +118 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_deploy.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_deploy.js +312 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_deployment_debug.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_deployment_debug.js +125 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_deployment_status.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_deployment_status.js +142 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_export_artifact.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_export_artifact.js +110 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_import_artifact.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_import_artifact.js +154 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_rollback_deployment.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_rollback_deployment.js +184 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_update.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_update.js +180 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_validate_deployment.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/deployment/snow_validate_deployment.js +288 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/index.d.ts +16 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/index.js +39 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_analyze_artifact.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_analyze_artifact.js +96 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_analyze_requirements.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_analyze_requirements.js +182 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_edit_artifact.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_edit_artifact.js +96 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_edit_by_sysid.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_edit_by_sysid.js +83 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_find_artifact.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_find_artifact.js +90 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_get_by_sysid.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_get_by_sysid.js +77 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_memory_search.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_memory_search.js +83 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_orchestrate_development.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_orchestrate_development.js +135 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_sync_data_consistency.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_sync_data_consistency.js +121 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_validate_live_connection.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/development/snow_validate_live_connection.js +126 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/index.d.ts +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/index.js +22 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/snow_create_devops_change.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/snow_create_devops_change.js +51 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/snow_create_devops_pipeline.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/snow_create_devops_pipeline.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/snow_create_pipeline.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/snow_create_pipeline.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/snow_get_devops_insights.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/snow_get_devops_insights.js +52 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/snow_track_deployment.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/snow_track_deployment.js +50 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/snow_velocity_tracking.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/devops/snow_velocity_tracking.js +49 -0
- package/dist/mcp/servicenow-mcp-unified/tools/email/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/email/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/email/snow_create_email_template.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/email/snow_create_email_template.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/email/snow_create_notification.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/email/snow_create_notification.js +52 -0
- package/dist/mcp/servicenow-mcp-unified/tools/email/snow_send_email.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/email/snow_send_email.js +53 -0
- package/dist/mcp/servicenow-mcp-unified/tools/encoders/index.d.ts +6 -0
- package/dist/mcp/servicenow-mcp-unified/tools/encoders/index.js +19 -0
- package/dist/mcp/servicenow-mcp-unified/tools/encoders/snow_decode_base64.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/encoders/snow_decode_base64.js +32 -0
- package/dist/mcp/servicenow-mcp-unified/tools/encoders/snow_decode_url.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/encoders/snow_decode_url.js +32 -0
- package/dist/mcp/servicenow-mcp-unified/tools/encoders/snow_encode_base64.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/encoders/snow_encode_base64.js +32 -0
- package/dist/mcp/servicenow-mcp-unified/tools/encoders/snow_encode_url.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/encoders/snow_encode_url.js +32 -0
- package/dist/mcp/servicenow-mcp-unified/tools/encoders/snow_hash_string.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/encoders/snow_hash_string.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/events/index.d.ts +6 -0
- package/dist/mcp/servicenow-mcp-unified/tools/events/index.js +19 -0
- package/dist/mcp/servicenow-mcp-unified/tools/events/snow_create_alert.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/events/snow_create_alert.js +43 -0
- package/dist/mcp/servicenow-mcp-unified/tools/events/snow_create_alert_rule.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/events/snow_create_alert_rule.js +59 -0
- package/dist/mcp/servicenow-mcp-unified/tools/events/snow_create_event.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/events/snow_create_event.js +47 -0
- package/dist/mcp/servicenow-mcp-unified/tools/events/snow_get_event_queue.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/events/snow_get_event_queue.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/events/snow_monitor_metrics.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/events/snow_monitor_metrics.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/extensions/index.d.ts +6 -0
- package/dist/mcp/servicenow-mcp-unified/tools/extensions/index.js +19 -0
- package/dist/mcp/servicenow-mcp-unified/tools/extensions/snow_custom_api.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/extensions/snow_custom_api.js +59 -0
- package/dist/mcp/servicenow-mcp-unified/tools/extensions/snow_file_download.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/extensions/snow_file_download.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/extensions/snow_file_upload.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/extensions/snow_file_upload.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/extensions/snow_graphql_query.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/extensions/snow_graphql_query.js +41 -0
- package/dist/mcp/servicenow-mcp-unified/tools/extensions/snow_scripted_rest_api.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/extensions/snow_scripted_rest_api.js +58 -0
- package/dist/mcp/servicenow-mcp-unified/tools/filters/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/filters/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/filters/snow_date_filter.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/filters/snow_date_filter.js +59 -0
- package/dist/mcp/servicenow-mcp-unified/tools/filters/snow_field_filter.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/filters/snow_field_filter.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/filters/snow_query_filter.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/filters/snow_query_filter.js +49 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/index.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/index.js +25 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_execute_flow.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_execute_flow.js +34 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_flow_connectivity_test.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_flow_connectivity_test.js +57 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_get_flow_details.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_get_flow_details.js +62 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_get_flow_execution_history.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_get_flow_execution_history.js +70 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_get_flow_execution_status.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_get_flow_execution_status.js +65 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_import_flow_from_xml.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_import_flow_from_xml.js +58 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_list_flows.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/flow-designer/snow_list_flows.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/formatters/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/formatters/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/formatters/snow_format_date.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/formatters/snow_format_date.js +57 -0
- package/dist/mcp/servicenow-mcp-unified/tools/formatters/snow_format_number.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/formatters/snow_format_number.js +50 -0
- package/dist/mcp/servicenow-mcp-unified/tools/formatters/snow_format_text.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/formatters/snow_format_text.js +54 -0
- package/dist/mcp/servicenow-mcp-unified/tools/forms/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/forms/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/forms/snow_add_form_field.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/forms/snow_add_form_field.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/forms/snow_create_form_layout.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/forms/snow_create_form_layout.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/forms/snow_create_form_section.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/forms/snow_create_form_section.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/generators/index.d.ts +2 -0
- package/dist/mcp/servicenow-mcp-unified/tools/generators/index.js +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/generators/snow_generate_records.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/generators/snow_generate_records.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/handlers/index.d.ts +5 -0
- package/dist/mcp/servicenow-mcp-unified/tools/handlers/index.js +16 -0
- package/dist/mcp/servicenow-mcp-unified/tools/handlers/snow_callback_handler.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/handlers/snow_callback_handler.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/handlers/snow_error_handler.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/handlers/snow_error_handler.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/handlers/snow_event_handler.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/handlers/snow_event_handler.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/handlers/snow_exception_handler.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/handlers/snow_exception_handler.js +43 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/index.d.ts +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/index.js +22 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/snow_cache_get.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/snow_cache_get.js +35 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/snow_cache_set.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/snow_cache_set.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/snow_diff_objects.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/snow_diff_objects.js +50 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/snow_paginate.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/snow_paginate.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/snow_rate_limit.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/snow_rate_limit.js +35 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/snow_retry_operation.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/helpers/snow_retry_operation.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr/index.d.ts +6 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr/snow_create_hr_task.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr/snow_create_hr_task.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr/snow_employee_offboarding.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr/snow_employee_offboarding.js +49 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr-csm/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr-csm/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr-csm/snow_create_customer_case.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr-csm/snow_create_customer_case.js +41 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr-csm/snow_create_hr_case.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr-csm/snow_create_hr_case.js +41 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr-csm/snow_employee_onboarding.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/hr-csm/snow_employee_onboarding.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/import-export/index.d.ts +5 -0
- package/dist/mcp/servicenow-mcp-unified/tools/import-export/index.js +16 -0
- package/dist/mcp/servicenow-mcp-unified/tools/import-export/snow_create_import_set.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/import-export/snow_create_import_set.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/import-export/snow_create_transform_map.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/import-export/snow_create_transform_map.js +43 -0
- package/dist/mcp/servicenow-mcp-unified/tools/import-export/snow_execute_transform.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/import-export/snow_execute_transform.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/import-export/snow_export_to_xml.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/import-export/snow_export_to_xml.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/index.d.ts +87 -0
- package/dist/mcp/servicenow-mcp-unified/tools/index.js +183 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/index.d.ts +18 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/index.js +49 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_analyze_query.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_analyze_query.js +190 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_batch_api.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_batch_api.js +116 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_create_email_config.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_create_email_config.js +110 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_create_event.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_create_event.js +117 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_create_field_map.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_create_field_map.js +103 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_create_rest_message.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_create_rest_message.js +126 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_create_transform_map.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_create_transform_map.js +130 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_create_web_service.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_create_web_service.js +101 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_detect_code_patterns.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_detect_code_patterns.js +267 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_discover_data_sources.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_discover_data_sources.js +147 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_discover_integration_endpoints.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_discover_integration_endpoints.js +133 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_generate_docs.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_generate_docs.js +239 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_schedule_job.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_schedule_job.js +200 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_test_integration.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_test_integration.js +286 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_test_rest_connection.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_test_rest_connection.js +129 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_workflow_analyze.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/integration/snow_workflow_analyze.js +186 -0
- package/dist/mcp/servicenow-mcp-unified/tools/journals/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/journals/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/journals/snow_add_comment.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/journals/snow_add_comment.js +39 -0
- package/dist/mcp/servicenow-mcp-unified/tools/journals/snow_get_journal_entries.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/journals/snow_get_journal_entries.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/index.d.ts +18 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/index.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_create_catalog_item.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_create_catalog_item.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_create_catalog_variable.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_create_catalog_variable.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_create_kb_article.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_create_kb_article.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_create_knowledge_article.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_create_knowledge_article.js +74 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_create_knowledge_base.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_create_knowledge_base.js +60 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_discover_knowledge_bases.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_discover_knowledge_bases.js +63 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_get_knowledge_article_details.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_get_knowledge_article_details.js +57 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_order_catalog_item.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_order_catalog_item.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_publish_kb_article.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_publish_kb_article.js +35 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_retire_knowledge_article.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_retire_knowledge_article.js +53 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_search_kb.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_search_kb.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_search_knowledge.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_search_knowledge.js +66 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_update_knowledge_article.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/knowledge/snow_update_knowledge_article.js +62 -0
- package/dist/mcp/servicenow-mcp-unified/tools/lists/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/lists/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/lists/snow_add_list_column.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/lists/snow_add_list_column.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/lists/snow_create_list_view.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/lists/snow_create_list_view.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/lists/snow_create_related_list.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/lists/snow_create_related_list.js +44 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/index.d.ts +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/index.js +25 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/snow_convert_to_es5.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/snow_convert_to_es5.js +138 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/snow_list_supported_artifacts.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/snow_list_supported_artifacts.js +119 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/snow_pull_artifact.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/snow_pull_artifact.js +187 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/snow_push_artifact.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/snow_push_artifact.js +190 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/snow_sync_cleanup.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/snow_sync_cleanup.js +190 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/snow_sync_status.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/local-sync/snow_sync_status.js +244 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/index.d.ts +21 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/index.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_classify_incident.d.ts +14 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_classify_incident.js +171 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_detect_anomalies.d.ts +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_detect_anomalies.js +173 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_forecast_incidents.d.ts +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_forecast_incidents.js +254 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_hybrid_recommendation.d.ts +15 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_hybrid_recommendation.js +311 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_performance_analytics.d.ts +15 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_performance_analytics.js +200 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_predict_change_risk.d.ts +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_predict_change_risk.js +159 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_train_anomaly_detector.d.ts +15 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_train_anomaly_detector.js +258 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_train_change_risk.d.ts +16 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_train_change_risk.js +221 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_train_incident_classifier.d.ts +16 -0
- package/dist/mcp/servicenow-mcp-unified/tools/machine-learning/ml_train_incident_classifier.js +295 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mappers/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mappers/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mappers/snow_data_mapper.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mappers/snow_data_mapper.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mappers/snow_field_mapper.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mappers/snow_field_mapper.js +39 -0
- package/dist/mcp/servicenow-mcp-unified/tools/menus/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/menus/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/menus/snow_create_menu.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/menus/snow_create_menu.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/menus/snow_create_menu_item.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/menus/snow_create_menu_item.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/metrics/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/metrics/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/metrics/snow_collect_metric.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/metrics/snow_collect_metric.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/metrics/snow_create_metric.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/metrics/snow_create_metric.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/index.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/index.js +25 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_configure_mobile_app.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_configure_mobile_app.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_configure_offline_sync.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_configure_offline_sync.js +77 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_create_mobile_action.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_create_mobile_action.js +91 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_create_mobile_layout.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_create_mobile_layout.js +90 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_discover_mobile_configs.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_discover_mobile_configs.js +104 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_get_mobile_analytics.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_get_mobile_analytics.js +106 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_send_push_notification.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/mobile/snow_send_push_notification.js +107 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/index.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/index.js +25 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_create_notification_template.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_create_notification_template.js +73 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_emergency_broadcast.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_emergency_broadcast.js +103 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_notification_analytics.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_notification_analytics.js +105 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_notification_preferences.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_notification_preferences.js +104 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_schedule_notification.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_schedule_notification.js +116 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_send_notification.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_send_notification.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_send_push.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/notifications/snow_send_push.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/index.d.ts +33 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/index.js +104 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_analyze_incident.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_analyze_incident.js +170 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_assign_task.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_assign_task.js +203 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_assign_user_to_group.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_assign_user_to_group.js +100 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_attach_file.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_attach_file.js +175 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_auto_resolve_incident.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_auto_resolve_incident.js +130 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_bulk_update.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_bulk_update.js +146 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_catalog_item_manager.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_catalog_item_manager.js +128 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_catalog_item_search.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_catalog_item_search.js +82 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_cleanup_test_artifacts.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_cleanup_test_artifacts.js +97 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_cmdb_search.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_cmdb_search.js +130 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_comprehensive_search.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_comprehensive_search.js +117 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_create_incident.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_create_incident.js +214 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_create_record.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_create_record.js +101 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_create_user_group.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_create_user_group.js +110 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_delete_record.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_delete_record.js +151 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_discover_table_fields.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_discover_table_fields.js +136 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_get_by_sysid.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_get_by_sysid.js +81 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_list_group_members.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_list_group_members.js +111 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_operational_metrics.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_operational_metrics.js +130 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_pattern_analysis.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_pattern_analysis.js +208 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_predictive_analysis.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_predictive_analysis.js +165 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_query_incidents.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_query_incidents.js +141 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_query_problems.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_query_problems.js +115 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_query_requests.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_query_requests.js +118 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_query_table.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_query_table.js +104 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_remove_user_from_group.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_remove_user_from_group.js +93 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_update_incident.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_update_incident.js +210 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_update_record.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_update_record.js +99 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_user_lookup.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/operations/snow_user_lookup.js +130 -0
- package/dist/mcp/servicenow-mcp-unified/tools/parsers/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/parsers/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/parsers/snow_parse_csv.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/parsers/snow_parse_csv.js +52 -0
- package/dist/mcp/servicenow-mcp-unified/tools/parsers/snow_parse_json.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/parsers/snow_parse_json.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/parsers/snow_parse_xml.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/parsers/snow_parse_xml.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/index.d.ts +18 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/index.js +49 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_collect_pa_data.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_collect_pa_data.js +49 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_data_visualization.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_data_visualization.js +64 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_kpi.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_kpi.js +63 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_pa_breakdown.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_pa_breakdown.js +49 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_pa_indicator.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_pa_indicator.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_pa_threshold.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_pa_threshold.js +51 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_pa_widget.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_pa_widget.js +56 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_scheduled_report.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_create_scheduled_report.js +63 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_discover_pa_indicators.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_discover_pa_indicators.js +49 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_discover_report_fields.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_discover_report_fields.js +47 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_discover_reporting_tables.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_discover_reporting_tables.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_export_report_data.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_export_report_data.js +56 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_generate_insights.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_generate_insights.js +63 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_get_pa_scores.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/performance-analytics/snow_get_pa_scores.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/index.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/index.js +31 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_create_business_rule.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_create_business_rule.js +176 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_create_client_script.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_create_client_script.js +147 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_create_script_include.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_create_script_include.js +142 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_create_ui_action.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_create_ui_action.js +159 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_create_ui_page.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_create_ui_page.js +139 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_create_ui_policy.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_create_ui_policy.js +137 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_discover_platform_tables.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_discover_platform_tables.js +115 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_table_schema_discovery.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/platform/snow_table_schema_discovery.js +197 -0
- package/dist/mcp/servicenow-mcp-unified/tools/plugins/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/plugins/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/plugins/snow_activate_plugin.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/plugins/snow_activate_plugin.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/plugins/snow_custom_plugin.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/plugins/snow_custom_plugin.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/plugins/snow_list_plugins.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/plugins/snow_list_plugins.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/processors/index.d.ts +2 -0
- package/dist/mcp/servicenow-mcp-unified/tools/processors/index.js +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/processors/snow_create_processor.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/processors/snow_create_processor.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/procurement/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/procurement/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/procurement/snow_approve_procurement.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/procurement/snow_approve_procurement.js +37 -0
- package/dist/mcp/servicenow-mcp-unified/tools/procurement/snow_create_purchase_order.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/procurement/snow_create_purchase_order.js +41 -0
- package/dist/mcp/servicenow-mcp-unified/tools/project/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/project/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/project/snow_create_project.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/project/snow_create_project.js +44 -0
- package/dist/mcp/servicenow-mcp-unified/tools/project/snow_create_project_task.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/project/snow_create_project_task.js +41 -0
- package/dist/mcp/servicenow-mcp-unified/tools/queues/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/queues/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/queues/snow_create_queue.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/queues/snow_create_queue.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/queues/snow_get_queue_items.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/queues/snow_get_queue_items.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/reporting/index.d.ts +6 -0
- package/dist/mcp/servicenow-mcp-unified/tools/reporting/index.js +19 -0
- package/dist/mcp/servicenow-mcp-unified/tools/reporting/snow_analyze_data_quality.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/reporting/snow_analyze_data_quality.js +128 -0
- package/dist/mcp/servicenow-mcp-unified/tools/reporting/snow_create_dashboard.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/reporting/snow_create_dashboard.js +70 -0
- package/dist/mcp/servicenow-mcp-unified/tools/reporting/snow_create_report.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/reporting/snow_create_report.js +39 -0
- package/dist/mcp/servicenow-mcp-unified/tools/reporting/snow_define_kpi.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/reporting/snow_define_kpi.js +69 -0
- package/dist/mcp/servicenow-mcp-unified/tools/reporting/snow_schedule_report_delivery.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/reporting/snow_schedule_report_delivery.js +71 -0
- package/dist/mcp/servicenow-mcp-unified/tools/rest-api/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/rest-api/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/rest-api/snow_create_rest_message.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/rest-api/snow_create_rest_message.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/rest-api/snow_create_rest_method.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/rest-api/snow_create_rest_method.js +47 -0
- package/dist/mcp/servicenow-mcp-unified/tools/rest-api/snow_test_rest_message.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/rest-api/snow_test_rest_message.js +48 -0
- package/dist/mcp/servicenow-mcp-unified/tools/scheduled-jobs/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/scheduled-jobs/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/scheduled-jobs/snow_create_scheduled_job.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/scheduled-jobs/snow_create_scheduled_job.js +50 -0
- package/dist/mcp/servicenow-mcp-unified/tools/scheduled-jobs/snow_execute_scheduled_job.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/scheduled-jobs/snow_execute_scheduled_job.js +49 -0
- package/dist/mcp/servicenow-mcp-unified/tools/scheduled-jobs/snow_get_job_history.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/scheduled-jobs/snow_get_job_history.js +44 -0
- package/dist/mcp/servicenow-mcp-unified/tools/schedules/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/schedules/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/schedules/snow_add_schedule_entry.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/schedules/snow_add_schedule_entry.js +47 -0
- package/dist/mcp/servicenow-mcp-unified/tools/schedules/snow_create_schedule.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/schedules/snow_create_schedule.js +39 -0
- package/dist/mcp/servicenow-mcp-unified/tools/script-includes/index.d.ts +2 -0
- package/dist/mcp/servicenow-mcp-unified/tools/script-includes/index.js +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/script-includes/snow_create_script_include.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/script-includes/snow_create_script_include.js +41 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/index.d.ts +19 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/index.js +60 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_analyze_threat_intelligence.d.ts +15 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_analyze_threat_intelligence.js +59 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_audit_trail_analysis.d.ts +16 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_audit_trail_analysis.js +82 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_automate_threat_response.d.ts +15 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_automate_threat_response.js +71 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_access_control.d.ts +18 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_access_control.js +51 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_acl.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_acl.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_audit_rule.d.ts +18 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_audit_rule.js +32 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_compliance_rule.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_compliance_rule.js +93 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_security_incident.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_security_incident.js +124 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_security_policy.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_security_policy.js +98 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_vulnerability_scan.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_create_vulnerability_scan.js +107 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_discover_security_frameworks.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_discover_security_frameworks.js +62 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_discover_security_policies.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_discover_security_policies.js +47 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_escalate_permissions.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_escalate_permissions.js +108 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_execute_security_playbook.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_execute_security_playbook.js +75 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_run_compliance_scan.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_run_compliance_scan.js +192 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_scan_vulnerabilities.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_scan_vulnerabilities.js +35 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_security_dashboard.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_security_dashboard.js +125 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_security_risk_assessment.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_security_risk_assessment.js +282 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_vulnerability_risk_assessment.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/security/snow_vulnerability_risk_assessment.js +76 -0
- package/dist/mcp/servicenow-mcp-unified/tools/service-portal/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/service-portal/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/service-portal/snow_create_sp_page.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/service-portal/snow_create_sp_page.js +35 -0
- package/dist/mcp/servicenow-mcp-unified/tools/service-portal/snow_create_sp_widget.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/service-portal/snow_create_sp_widget.js +47 -0
- package/dist/mcp/servicenow-mcp-unified/tools/sla/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/sla/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/sla/snow_create_sla.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/sla/snow_create_sla.js +44 -0
- package/dist/mcp/servicenow-mcp-unified/tools/sla/snow_get_sla_status.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/sla/snow_get_sla_status.js +43 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/index.d.ts +17 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/index.js +44 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_bulk_get.d.ts +33 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_bulk_get.js +87 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_bulk_set.d.ts +43 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_bulk_set.js +121 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_categories.d.ts +25 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_categories.js +70 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_delete.d.ts +30 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_delete.js +83 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_export.d.ts +34 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_export.js +98 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_get.d.ts +30 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_get.js +85 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_history.d.ts +30 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_history.js +91 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_import.d.ts +35 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_import.js +160 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_list.d.ts +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_list.js +116 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_search.d.ts +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_search.js +99 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_set.d.ts +51 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_set.js +124 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_validate.d.ts +29 -0
- package/dist/mcp/servicenow-mcp-unified/tools/system-properties/snow_property_validate.js +123 -0
- package/dist/mcp/servicenow-mcp-unified/tools/templates/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/templates/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/templates/snow_apply_template.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/templates/snow_apply_template.js +39 -0
- package/dist/mcp/servicenow-mcp-unified/tools/templates/snow_create_template.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/templates/snow_create_template.js +43 -0
- package/dist/mcp/servicenow-mcp-unified/tools/transformers/index.d.ts +2 -0
- package/dist/mcp/servicenow-mcp-unified/tools/transformers/index.js +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/transformers/snow_transform_data.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/transformers/snow_transform_data.js +39 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-actions/index.d.ts +2 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-actions/index.js +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-actions/snow_create_ui_action.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-actions/snow_create_ui_action.js +53 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/index.d.ts +23 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/index.js +64 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_add_uib_page_element.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_add_uib_page_element.js +105 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_analyze_uib_page_performance.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_analyze_uib_page_performance.js +133 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_clone_uib_component.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_clone_uib_component.js +93 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_configure_uib_data_broker.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_configure_uib_data_broker.js +84 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_client_script.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_client_script.js +77 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_client_state.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_client_state.js +72 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_component.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_component.js +96 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_data_broker.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_data_broker.js +85 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_event.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_event.js +72 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_page.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_page.js +93 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_page_registry.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_uib_page_registry.js +73 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_workspace.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_create_workspace.js +99 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_debug_widget_fetch.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_debug_widget_fetch.js +84 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_delete_uib_page.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_delete_uib_page.js +102 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_discover_uib_components.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_discover_uib_components.js +90 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_discover_uib_page_usage.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_discover_uib_page_usage.js +100 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_discover_uib_pages.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_discover_uib_pages.js +96 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_discover_uib_routes.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_discover_uib_routes.js +93 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_remove_uib_page_element.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-builder/snow_remove_uib_page_element.js +132 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-policies/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-policies/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-policies/snow_create_ui_policy.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-policies/snow_create_ui_policy.js +48 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-policies/snow_create_ui_policy_action.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/ui-policies/snow_create_ui_policy_action.js +48 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/index.d.ts +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/index.js +34 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_ensure_active_update_set.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_ensure_active_update_set.js +102 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_add_artifact.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_add_artifact.js +88 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_complete.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_complete.js +91 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_create.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_create.js +80 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_current.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_current.js +65 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_export.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_export.js +123 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_list.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_list.js +89 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_preview.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_preview.js +112 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_switch.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/update-sets/snow_update_set_switch.js +60 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/index.d.ts +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/index.js +22 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/snow_add_user_to_group.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/snow_add_user_to_group.js +36 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/snow_assign_role.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/snow_assign_role.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/snow_create_group.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/snow_create_group.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/snow_create_role.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/snow_create_role.js +41 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/snow_create_user.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/snow_create_user.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/snow_deactivate_user.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/user-admin/snow_deactivate_user.js +34 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/index.d.ts +7 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/index.js +22 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/snow_generate_guid.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/snow_generate_guid.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/snow_merge_objects.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/snow_merge_objects.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/snow_random_string.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/snow_random_string.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/snow_sanitize_input.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/snow_sanitize_input.js +54 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/snow_sleep.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/snow_sleep.js +31 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/snow_timestamp.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/utilities/snow_timestamp.js +49 -0
- package/dist/mcp/servicenow-mcp-unified/tools/validators/index.d.ts +6 -0
- package/dist/mcp/servicenow-mcp-unified/tools/validators/index.js +19 -0
- package/dist/mcp/servicenow-mcp-unified/tools/validators/snow_preview_widget.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/validators/snow_preview_widget.js +225 -0
- package/dist/mcp/servicenow-mcp-unified/tools/validators/snow_validate_field.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/validators/snow_validate_field.js +52 -0
- package/dist/mcp/servicenow-mcp-unified/tools/validators/snow_validate_record.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/validators/snow_validate_record.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/validators/snow_validate_sysid.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/validators/snow_validate_sysid.js +108 -0
- package/dist/mcp/servicenow-mcp-unified/tools/validators/snow_widget_test.d.ts +11 -0
- package/dist/mcp/servicenow-mcp-unified/tools/validators/snow_widget_test.js +186 -0
- package/dist/mcp/servicenow-mcp-unified/tools/variables/index.d.ts +3 -0
- package/dist/mcp/servicenow-mcp-unified/tools/variables/index.js +10 -0
- package/dist/mcp/servicenow-mcp-unified/tools/variables/snow_create_variable.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/variables/snow_create_variable.js +46 -0
- package/dist/mcp/servicenow-mcp-unified/tools/variables/snow_create_variable_set.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/variables/snow_create_variable_set.js +39 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/index.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/index.js +25 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_create_va_topic.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_create_va_topic.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_create_va_topic_block.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_create_va_topic_block.js +82 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_discover_va_topics.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_discover_va_topics.js +71 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_get_va_conversation.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_get_va_conversation.js +84 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_handoff_to_agent.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_handoff_to_agent.js +86 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_send_va_message.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_send_va_message.js +81 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_train_va_nlu.d.ts +8 -0
- package/dist/mcp/servicenow-mcp-unified/tools/virtual-agent/snow_train_va_nlu.js +33 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workflow/index.d.ts +4 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workflow/index.js +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workflow/snow_create_workflow.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workflow/snow_create_workflow.js +42 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workflow/snow_create_workflow_activity.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workflow/snow_create_workflow_activity.js +40 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workflow/snow_execute_workflow.d.ts +9 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workflow/snow_execute_workflow.js +45 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/index.d.ts +15 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/index.js +38 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_complete_workspace.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_complete_workspace.js +208 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_configurable_agent_workspace.d.ts +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_configurable_agent_workspace.js +107 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_ux_app_config.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_ux_app_config.js +76 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_ux_app_route.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_ux_app_route.js +86 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_ux_experience.d.ts +13 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_ux_experience.js +77 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_ux_page_macroponent.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_ux_page_macroponent.js +74 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_ux_page_registry.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_create_ux_page_registry.js +79 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_discover_all_workspaces.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_discover_all_workspaces.js +135 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_update_ux_app_config_landing_page.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_update_ux_app_config_landing_page.js +61 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_validate_workspace_configuration.d.ts +12 -0
- package/dist/mcp/servicenow-mcp-unified/tools/workspace/snow_validate_workspace_configuration.js +209 -0
- package/dist/monitoring/performance-tracker.js +26 -25
- package/dist/queen/agent-factory.js +24 -0
- package/dist/queen/neural-learning.js +4 -0
- package/dist/queen/types.d.ts +2 -2
- package/dist/sdk/claude-agent-sdk-integration.d.ts +100 -0
- package/dist/sdk/claude-agent-sdk-integration.js +414 -0
- package/dist/sdk/index.d.ts +16 -0
- package/dist/sdk/index.js +18 -0
- package/dist/sdk/queen-orchestrator.d.ts +94 -0
- package/dist/sdk/queen-orchestrator.js +309 -0
- package/dist/snow-flow-system.d.ts +5 -9
- package/dist/snow-flow-system.js +49 -96
- package/dist/utils/enhanced-script-executor.d.ts +33 -0
- package/dist/utils/enhanced-script-executor.js +183 -0
- package/dist/utils/mcp-persistent-guard.js +16 -8
- package/dist/utils/unified-script-executor.d.ts +50 -0
- package/dist/utils/unified-script-executor.js +182 -0
- package/package.json +8 -4
- package/src/deprecated/README.md +59 -0
- package/src/mcp/servicenow-mcp-unified/README.md +399 -0
- package/src/queen/queen-memory-system.ts.backup +490 -0
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_schedule_notification - Schedule notifications
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
9
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
10
|
+
exports.toolDefinition = {
|
|
11
|
+
name: 'snow_schedule_notification',
|
|
12
|
+
description: 'Schedule future notification delivery with advanced scheduling options',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
recipients: {
|
|
17
|
+
type: 'array',
|
|
18
|
+
items: { type: 'string' },
|
|
19
|
+
description: 'Recipient user sys_ids'
|
|
20
|
+
},
|
|
21
|
+
template: {
|
|
22
|
+
type: 'string',
|
|
23
|
+
description: 'Template sys_id or name'
|
|
24
|
+
},
|
|
25
|
+
schedule_type: {
|
|
26
|
+
type: 'string',
|
|
27
|
+
description: 'Schedule type',
|
|
28
|
+
enum: ['once', 'recurring', 'conditional']
|
|
29
|
+
},
|
|
30
|
+
schedule_time: {
|
|
31
|
+
type: 'string',
|
|
32
|
+
description: 'ISO timestamp for one-time or start of recurring'
|
|
33
|
+
},
|
|
34
|
+
recurrence_pattern: {
|
|
35
|
+
type: 'string',
|
|
36
|
+
description: 'Cron expression for recurring notifications (e.g., "0 9 * * 1-5" for weekdays at 9am)'
|
|
37
|
+
},
|
|
38
|
+
subject: {
|
|
39
|
+
type: 'string',
|
|
40
|
+
description: 'Notification subject'
|
|
41
|
+
},
|
|
42
|
+
message: {
|
|
43
|
+
type: 'string',
|
|
44
|
+
description: 'Notification message'
|
|
45
|
+
},
|
|
46
|
+
personalization: {
|
|
47
|
+
type: 'object',
|
|
48
|
+
description: 'Template personalization data'
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
required: ['recipients', 'schedule_type', 'schedule_time']
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
async function execute(args, context) {
|
|
55
|
+
const { recipients, template, schedule_type, schedule_time, recurrence_pattern, subject = 'Scheduled Notification', message = '', personalization = {} } = args;
|
|
56
|
+
try {
|
|
57
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
58
|
+
if (schedule_type === 'once') {
|
|
59
|
+
// Create scheduled job for one-time notification
|
|
60
|
+
const jobResponse = await client.post('/api/now/table/sysauto_script', {
|
|
61
|
+
name: `Scheduled Notification - ${new Date().toISOString()}`,
|
|
62
|
+
script: `
|
|
63
|
+
var users = '${recipients.join(',')}';
|
|
64
|
+
var userList = users.split(',');
|
|
65
|
+
userList.forEach(function(userId) {
|
|
66
|
+
gs.eventQueue('notification.scheduled', null, userId, '${subject}', '${message}');
|
|
67
|
+
});
|
|
68
|
+
`,
|
|
69
|
+
run: schedule_time,
|
|
70
|
+
run_type: 'once',
|
|
71
|
+
active: true
|
|
72
|
+
});
|
|
73
|
+
return (0, error_handler_js_1.createSuccessResult)({
|
|
74
|
+
scheduled: true,
|
|
75
|
+
schedule_type: 'once',
|
|
76
|
+
job_sys_id: jobResponse.data.result.sys_id,
|
|
77
|
+
schedule_time,
|
|
78
|
+
recipients_count: recipients.length
|
|
79
|
+
});
|
|
80
|
+
}
|
|
81
|
+
if (schedule_type === 'recurring') {
|
|
82
|
+
// Create recurring scheduled job
|
|
83
|
+
if (!recurrence_pattern) {
|
|
84
|
+
return (0, error_handler_js_1.createErrorResult)('recurrence_pattern is required for recurring notifications');
|
|
85
|
+
}
|
|
86
|
+
const jobResponse = await client.post('/api/now/table/sysauto_script', {
|
|
87
|
+
name: `Recurring Notification - ${new Date().toISOString()}`,
|
|
88
|
+
script: `
|
|
89
|
+
var users = '${recipients.join(',')}';
|
|
90
|
+
var userList = users.split(',');
|
|
91
|
+
userList.forEach(function(userId) {
|
|
92
|
+
gs.eventQueue('notification.scheduled', null, userId, '${subject}', '${message}');
|
|
93
|
+
});
|
|
94
|
+
`,
|
|
95
|
+
run: schedule_time,
|
|
96
|
+
run_type: 'periodically',
|
|
97
|
+
repeat: recurrence_pattern,
|
|
98
|
+
active: true
|
|
99
|
+
});
|
|
100
|
+
return (0, error_handler_js_1.createSuccessResult)({
|
|
101
|
+
scheduled: true,
|
|
102
|
+
schedule_type: 'recurring',
|
|
103
|
+
job_sys_id: jobResponse.data.result.sys_id,
|
|
104
|
+
schedule_time,
|
|
105
|
+
recurrence_pattern,
|
|
106
|
+
recipients_count: recipients.length
|
|
107
|
+
});
|
|
108
|
+
}
|
|
109
|
+
return (0, error_handler_js_1.createErrorResult)(`Unsupported schedule_type: ${schedule_type}`);
|
|
110
|
+
}
|
|
111
|
+
catch (error) {
|
|
112
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
exports.version = '1.0.0';
|
|
116
|
+
//# sourceMappingURL=snow_schedule_notification.js.map
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_send_notification - Send notification
|
|
3
|
+
*/
|
|
4
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
5
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
6
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
7
|
+
export declare const version = "1.0.0";
|
|
8
|
+
//# sourceMappingURL=snow_send_notification.d.ts.map
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_send_notification - Send notification
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
9
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
10
|
+
exports.toolDefinition = {
|
|
11
|
+
name: 'snow_send_notification',
|
|
12
|
+
description: 'Send email/SMS notification',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
users: { type: 'array', items: { type: 'string' } },
|
|
17
|
+
subject: { type: 'string' },
|
|
18
|
+
message: { type: 'string' },
|
|
19
|
+
type: { type: 'string', enum: ['email', 'sms', 'push'] }
|
|
20
|
+
},
|
|
21
|
+
required: ['users', 'subject', 'message']
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
async function execute(args, context) {
|
|
25
|
+
const { users, subject, message, type = 'email' } = args;
|
|
26
|
+
try {
|
|
27
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
28
|
+
const notifData = { users: users.join(','), subject, message, type };
|
|
29
|
+
const response = await client.post('/api/now/table/sysevent_email_action', notifData);
|
|
30
|
+
return (0, error_handler_js_1.createSuccessResult)({ sent: true, notification: response.data.result });
|
|
31
|
+
}
|
|
32
|
+
catch (error) {
|
|
33
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.version = '1.0.0';
|
|
37
|
+
//# sourceMappingURL=snow_send_notification.js.map
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_send_push - Send push notification
|
|
3
|
+
*/
|
|
4
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
5
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
6
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
7
|
+
export declare const version = "1.0.0";
|
|
8
|
+
//# sourceMappingURL=snow_send_push.d.ts.map
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_send_push - Send push notification
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
9
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
10
|
+
exports.toolDefinition = {
|
|
11
|
+
name: 'snow_send_push',
|
|
12
|
+
description: 'Send mobile push notification',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
device_ids: { type: 'array', items: { type: 'string' } },
|
|
17
|
+
title: { type: 'string' },
|
|
18
|
+
body: { type: 'string' }
|
|
19
|
+
},
|
|
20
|
+
required: ['device_ids', 'title', 'body']
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
async function execute(args, context) {
|
|
24
|
+
const { device_ids, title, body } = args;
|
|
25
|
+
try {
|
|
26
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
27
|
+
const pushData = { device_ids: device_ids.join(','), title, body };
|
|
28
|
+
const response = await client.post('/api/now/v1/push/notification', pushData);
|
|
29
|
+
return (0, error_handler_js_1.createSuccessResult)({ sent: true, push: response.data.result });
|
|
30
|
+
}
|
|
31
|
+
catch (error) {
|
|
32
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
exports.version = '1.0.0';
|
|
36
|
+
//# sourceMappingURL=snow_send_push.js.map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Operations Tools - Export all operations tool modules
|
|
3
|
+
*/
|
|
4
|
+
export { toolDefinition as snow_query_table_def, execute as snow_query_table_exec } from './snow_query_table.js';
|
|
5
|
+
export { toolDefinition as snow_discover_table_fields_def, execute as snow_discover_table_fields_exec } from './snow_discover_table_fields.js';
|
|
6
|
+
export { toolDefinition as snow_get_by_sysid_def, execute as snow_get_by_sysid_exec } from './snow_get_by_sysid.js';
|
|
7
|
+
export { toolDefinition as snow_comprehensive_search_def, execute as snow_comprehensive_search_exec } from './snow_comprehensive_search.js';
|
|
8
|
+
export { toolDefinition as snow_create_record_def, execute as snow_create_record_exec } from './snow_create_record.js';
|
|
9
|
+
export { toolDefinition as snow_update_record_def, execute as snow_update_record_exec } from './snow_update_record.js';
|
|
10
|
+
export { toolDefinition as snow_delete_record_def, execute as snow_delete_record_exec } from './snow_delete_record.js';
|
|
11
|
+
export { toolDefinition as snow_bulk_update_def, execute as snow_bulk_update_exec } from './snow_bulk_update.js';
|
|
12
|
+
export { toolDefinition as snow_attach_file_def, execute as snow_attach_file_exec } from './snow_attach_file.js';
|
|
13
|
+
export { toolDefinition as snow_create_incident_def, execute as snow_create_incident_exec } from './snow_create_incident.js';
|
|
14
|
+
export { toolDefinition as snow_update_incident_def, execute as snow_update_incident_exec } from './snow_update_incident.js';
|
|
15
|
+
export { toolDefinition as snow_query_incidents_def, execute as snow_query_incidents_exec } from './snow_query_incidents.js';
|
|
16
|
+
export { toolDefinition as snow_analyze_incident_def, execute as snow_analyze_incident_exec } from './snow_analyze_incident.js';
|
|
17
|
+
export { toolDefinition as snow_auto_resolve_incident_def, execute as snow_auto_resolve_incident_exec } from './snow_auto_resolve_incident.js';
|
|
18
|
+
export { toolDefinition as snow_assign_task_def, execute as snow_assign_task_exec } from './snow_assign_task.js';
|
|
19
|
+
export { toolDefinition as snow_query_requests_def, execute as snow_query_requests_exec } from './snow_query_requests.js';
|
|
20
|
+
export { toolDefinition as snow_query_problems_def, execute as snow_query_problems_exec } from './snow_query_problems.js';
|
|
21
|
+
export { toolDefinition as snow_cmdb_search_def, execute as snow_cmdb_search_exec } from './snow_cmdb_search.js';
|
|
22
|
+
export { toolDefinition as snow_user_lookup_def, execute as snow_user_lookup_exec } from './snow_user_lookup.js';
|
|
23
|
+
export { toolDefinition as snow_create_user_group_def, execute as snow_create_user_group_exec } from './snow_create_user_group.js';
|
|
24
|
+
export { toolDefinition as snow_assign_user_to_group_def, execute as snow_assign_user_to_group_exec } from './snow_assign_user_to_group.js';
|
|
25
|
+
export { toolDefinition as snow_remove_user_from_group_def, execute as snow_remove_user_from_group_exec } from './snow_remove_user_from_group.js';
|
|
26
|
+
export { toolDefinition as snow_list_group_members_def, execute as snow_list_group_members_exec } from './snow_list_group_members.js';
|
|
27
|
+
export { toolDefinition as snow_operational_metrics_def, execute as snow_operational_metrics_exec } from './snow_operational_metrics.js';
|
|
28
|
+
export { toolDefinition as snow_pattern_analysis_def, execute as snow_pattern_analysis_exec } from './snow_pattern_analysis.js';
|
|
29
|
+
export { toolDefinition as snow_predictive_analysis_def, execute as snow_predictive_analysis_exec } from './snow_predictive_analysis.js';
|
|
30
|
+
export { toolDefinition as snow_catalog_item_manager_def, execute as snow_catalog_item_manager_exec } from './snow_catalog_item_manager.js';
|
|
31
|
+
export { toolDefinition as snow_catalog_item_search_def, execute as snow_catalog_item_search_exec } from './snow_catalog_item_search.js';
|
|
32
|
+
export { toolDefinition as snow_cleanup_test_artifacts_def, execute as snow_cleanup_test_artifacts_exec } from './snow_cleanup_test_artifacts.js';
|
|
33
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Operations Tools - Export all operations tool modules
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.snow_pattern_analysis_exec = exports.snow_pattern_analysis_def = exports.snow_operational_metrics_exec = exports.snow_operational_metrics_def = exports.snow_list_group_members_exec = exports.snow_list_group_members_def = exports.snow_remove_user_from_group_exec = exports.snow_remove_user_from_group_def = exports.snow_assign_user_to_group_exec = exports.snow_assign_user_to_group_def = exports.snow_create_user_group_exec = exports.snow_create_user_group_def = exports.snow_user_lookup_exec = exports.snow_user_lookup_def = exports.snow_cmdb_search_exec = exports.snow_cmdb_search_def = exports.snow_query_problems_exec = exports.snow_query_problems_def = exports.snow_query_requests_exec = exports.snow_query_requests_def = exports.snow_assign_task_exec = exports.snow_assign_task_def = exports.snow_auto_resolve_incident_exec = exports.snow_auto_resolve_incident_def = exports.snow_analyze_incident_exec = exports.snow_analyze_incident_def = exports.snow_query_incidents_exec = exports.snow_query_incidents_def = exports.snow_update_incident_exec = exports.snow_update_incident_def = exports.snow_create_incident_exec = exports.snow_create_incident_def = exports.snow_attach_file_exec = exports.snow_attach_file_def = exports.snow_bulk_update_exec = exports.snow_bulk_update_def = exports.snow_delete_record_exec = exports.snow_delete_record_def = exports.snow_update_record_exec = exports.snow_update_record_def = exports.snow_create_record_exec = exports.snow_create_record_def = exports.snow_comprehensive_search_exec = exports.snow_comprehensive_search_def = exports.snow_get_by_sysid_exec = exports.snow_get_by_sysid_def = exports.snow_discover_table_fields_exec = exports.snow_discover_table_fields_def = exports.snow_query_table_exec = exports.snow_query_table_def = void 0;
|
|
7
|
+
exports.snow_cleanup_test_artifacts_exec = exports.snow_cleanup_test_artifacts_def = exports.snow_catalog_item_search_exec = exports.snow_catalog_item_search_def = exports.snow_catalog_item_manager_exec = exports.snow_catalog_item_manager_def = exports.snow_predictive_analysis_exec = exports.snow_predictive_analysis_def = void 0;
|
|
8
|
+
// Core Operations
|
|
9
|
+
var snow_query_table_js_1 = require("./snow_query_table.js");
|
|
10
|
+
Object.defineProperty(exports, "snow_query_table_def", { enumerable: true, get: function () { return snow_query_table_js_1.toolDefinition; } });
|
|
11
|
+
Object.defineProperty(exports, "snow_query_table_exec", { enumerable: true, get: function () { return snow_query_table_js_1.execute; } });
|
|
12
|
+
var snow_discover_table_fields_js_1 = require("./snow_discover_table_fields.js");
|
|
13
|
+
Object.defineProperty(exports, "snow_discover_table_fields_def", { enumerable: true, get: function () { return snow_discover_table_fields_js_1.toolDefinition; } });
|
|
14
|
+
Object.defineProperty(exports, "snow_discover_table_fields_exec", { enumerable: true, get: function () { return snow_discover_table_fields_js_1.execute; } });
|
|
15
|
+
var snow_get_by_sysid_js_1 = require("./snow_get_by_sysid.js");
|
|
16
|
+
Object.defineProperty(exports, "snow_get_by_sysid_def", { enumerable: true, get: function () { return snow_get_by_sysid_js_1.toolDefinition; } });
|
|
17
|
+
Object.defineProperty(exports, "snow_get_by_sysid_exec", { enumerable: true, get: function () { return snow_get_by_sysid_js_1.execute; } });
|
|
18
|
+
var snow_comprehensive_search_js_1 = require("./snow_comprehensive_search.js");
|
|
19
|
+
Object.defineProperty(exports, "snow_comprehensive_search_def", { enumerable: true, get: function () { return snow_comprehensive_search_js_1.toolDefinition; } });
|
|
20
|
+
Object.defineProperty(exports, "snow_comprehensive_search_exec", { enumerable: true, get: function () { return snow_comprehensive_search_js_1.execute; } });
|
|
21
|
+
// Record Operations
|
|
22
|
+
var snow_create_record_js_1 = require("./snow_create_record.js");
|
|
23
|
+
Object.defineProperty(exports, "snow_create_record_def", { enumerable: true, get: function () { return snow_create_record_js_1.toolDefinition; } });
|
|
24
|
+
Object.defineProperty(exports, "snow_create_record_exec", { enumerable: true, get: function () { return snow_create_record_js_1.execute; } });
|
|
25
|
+
var snow_update_record_js_1 = require("./snow_update_record.js");
|
|
26
|
+
Object.defineProperty(exports, "snow_update_record_def", { enumerable: true, get: function () { return snow_update_record_js_1.toolDefinition; } });
|
|
27
|
+
Object.defineProperty(exports, "snow_update_record_exec", { enumerable: true, get: function () { return snow_update_record_js_1.execute; } });
|
|
28
|
+
var snow_delete_record_js_1 = require("./snow_delete_record.js");
|
|
29
|
+
Object.defineProperty(exports, "snow_delete_record_def", { enumerable: true, get: function () { return snow_delete_record_js_1.toolDefinition; } });
|
|
30
|
+
Object.defineProperty(exports, "snow_delete_record_exec", { enumerable: true, get: function () { return snow_delete_record_js_1.execute; } });
|
|
31
|
+
var snow_bulk_update_js_1 = require("./snow_bulk_update.js");
|
|
32
|
+
Object.defineProperty(exports, "snow_bulk_update_def", { enumerable: true, get: function () { return snow_bulk_update_js_1.toolDefinition; } });
|
|
33
|
+
Object.defineProperty(exports, "snow_bulk_update_exec", { enumerable: true, get: function () { return snow_bulk_update_js_1.execute; } });
|
|
34
|
+
var snow_attach_file_js_1 = require("./snow_attach_file.js");
|
|
35
|
+
Object.defineProperty(exports, "snow_attach_file_def", { enumerable: true, get: function () { return snow_attach_file_js_1.toolDefinition; } });
|
|
36
|
+
Object.defineProperty(exports, "snow_attach_file_exec", { enumerable: true, get: function () { return snow_attach_file_js_1.execute; } });
|
|
37
|
+
// Incident Management
|
|
38
|
+
var snow_create_incident_js_1 = require("./snow_create_incident.js");
|
|
39
|
+
Object.defineProperty(exports, "snow_create_incident_def", { enumerable: true, get: function () { return snow_create_incident_js_1.toolDefinition; } });
|
|
40
|
+
Object.defineProperty(exports, "snow_create_incident_exec", { enumerable: true, get: function () { return snow_create_incident_js_1.execute; } });
|
|
41
|
+
var snow_update_incident_js_1 = require("./snow_update_incident.js");
|
|
42
|
+
Object.defineProperty(exports, "snow_update_incident_def", { enumerable: true, get: function () { return snow_update_incident_js_1.toolDefinition; } });
|
|
43
|
+
Object.defineProperty(exports, "snow_update_incident_exec", { enumerable: true, get: function () { return snow_update_incident_js_1.execute; } });
|
|
44
|
+
var snow_query_incidents_js_1 = require("./snow_query_incidents.js");
|
|
45
|
+
Object.defineProperty(exports, "snow_query_incidents_def", { enumerable: true, get: function () { return snow_query_incidents_js_1.toolDefinition; } });
|
|
46
|
+
Object.defineProperty(exports, "snow_query_incidents_exec", { enumerable: true, get: function () { return snow_query_incidents_js_1.execute; } });
|
|
47
|
+
var snow_analyze_incident_js_1 = require("./snow_analyze_incident.js");
|
|
48
|
+
Object.defineProperty(exports, "snow_analyze_incident_def", { enumerable: true, get: function () { return snow_analyze_incident_js_1.toolDefinition; } });
|
|
49
|
+
Object.defineProperty(exports, "snow_analyze_incident_exec", { enumerable: true, get: function () { return snow_analyze_incident_js_1.execute; } });
|
|
50
|
+
var snow_auto_resolve_incident_js_1 = require("./snow_auto_resolve_incident.js");
|
|
51
|
+
Object.defineProperty(exports, "snow_auto_resolve_incident_def", { enumerable: true, get: function () { return snow_auto_resolve_incident_js_1.toolDefinition; } });
|
|
52
|
+
Object.defineProperty(exports, "snow_auto_resolve_incident_exec", { enumerable: true, get: function () { return snow_auto_resolve_incident_js_1.execute; } });
|
|
53
|
+
var snow_assign_task_js_1 = require("./snow_assign_task.js");
|
|
54
|
+
Object.defineProperty(exports, "snow_assign_task_def", { enumerable: true, get: function () { return snow_assign_task_js_1.toolDefinition; } });
|
|
55
|
+
Object.defineProperty(exports, "snow_assign_task_exec", { enumerable: true, get: function () { return snow_assign_task_js_1.execute; } });
|
|
56
|
+
// Request & Problem Management
|
|
57
|
+
var snow_query_requests_js_1 = require("./snow_query_requests.js");
|
|
58
|
+
Object.defineProperty(exports, "snow_query_requests_def", { enumerable: true, get: function () { return snow_query_requests_js_1.toolDefinition; } });
|
|
59
|
+
Object.defineProperty(exports, "snow_query_requests_exec", { enumerable: true, get: function () { return snow_query_requests_js_1.execute; } });
|
|
60
|
+
var snow_query_problems_js_1 = require("./snow_query_problems.js");
|
|
61
|
+
Object.defineProperty(exports, "snow_query_problems_def", { enumerable: true, get: function () { return snow_query_problems_js_1.toolDefinition; } });
|
|
62
|
+
Object.defineProperty(exports, "snow_query_problems_exec", { enumerable: true, get: function () { return snow_query_problems_js_1.execute; } });
|
|
63
|
+
// CMDB Operations
|
|
64
|
+
var snow_cmdb_search_js_1 = require("./snow_cmdb_search.js");
|
|
65
|
+
Object.defineProperty(exports, "snow_cmdb_search_def", { enumerable: true, get: function () { return snow_cmdb_search_js_1.toolDefinition; } });
|
|
66
|
+
Object.defineProperty(exports, "snow_cmdb_search_exec", { enumerable: true, get: function () { return snow_cmdb_search_js_1.execute; } });
|
|
67
|
+
// User & Group Management
|
|
68
|
+
var snow_user_lookup_js_1 = require("./snow_user_lookup.js");
|
|
69
|
+
Object.defineProperty(exports, "snow_user_lookup_def", { enumerable: true, get: function () { return snow_user_lookup_js_1.toolDefinition; } });
|
|
70
|
+
Object.defineProperty(exports, "snow_user_lookup_exec", { enumerable: true, get: function () { return snow_user_lookup_js_1.execute; } });
|
|
71
|
+
var snow_create_user_group_js_1 = require("./snow_create_user_group.js");
|
|
72
|
+
Object.defineProperty(exports, "snow_create_user_group_def", { enumerable: true, get: function () { return snow_create_user_group_js_1.toolDefinition; } });
|
|
73
|
+
Object.defineProperty(exports, "snow_create_user_group_exec", { enumerable: true, get: function () { return snow_create_user_group_js_1.execute; } });
|
|
74
|
+
var snow_assign_user_to_group_js_1 = require("./snow_assign_user_to_group.js");
|
|
75
|
+
Object.defineProperty(exports, "snow_assign_user_to_group_def", { enumerable: true, get: function () { return snow_assign_user_to_group_js_1.toolDefinition; } });
|
|
76
|
+
Object.defineProperty(exports, "snow_assign_user_to_group_exec", { enumerable: true, get: function () { return snow_assign_user_to_group_js_1.execute; } });
|
|
77
|
+
var snow_remove_user_from_group_js_1 = require("./snow_remove_user_from_group.js");
|
|
78
|
+
Object.defineProperty(exports, "snow_remove_user_from_group_def", { enumerable: true, get: function () { return snow_remove_user_from_group_js_1.toolDefinition; } });
|
|
79
|
+
Object.defineProperty(exports, "snow_remove_user_from_group_exec", { enumerable: true, get: function () { return snow_remove_user_from_group_js_1.execute; } });
|
|
80
|
+
var snow_list_group_members_js_1 = require("./snow_list_group_members.js");
|
|
81
|
+
Object.defineProperty(exports, "snow_list_group_members_def", { enumerable: true, get: function () { return snow_list_group_members_js_1.toolDefinition; } });
|
|
82
|
+
Object.defineProperty(exports, "snow_list_group_members_exec", { enumerable: true, get: function () { return snow_list_group_members_js_1.execute; } });
|
|
83
|
+
// Analytics & Metrics
|
|
84
|
+
var snow_operational_metrics_js_1 = require("./snow_operational_metrics.js");
|
|
85
|
+
Object.defineProperty(exports, "snow_operational_metrics_def", { enumerable: true, get: function () { return snow_operational_metrics_js_1.toolDefinition; } });
|
|
86
|
+
Object.defineProperty(exports, "snow_operational_metrics_exec", { enumerable: true, get: function () { return snow_operational_metrics_js_1.execute; } });
|
|
87
|
+
var snow_pattern_analysis_js_1 = require("./snow_pattern_analysis.js");
|
|
88
|
+
Object.defineProperty(exports, "snow_pattern_analysis_def", { enumerable: true, get: function () { return snow_pattern_analysis_js_1.toolDefinition; } });
|
|
89
|
+
Object.defineProperty(exports, "snow_pattern_analysis_exec", { enumerable: true, get: function () { return snow_pattern_analysis_js_1.execute; } });
|
|
90
|
+
var snow_predictive_analysis_js_1 = require("./snow_predictive_analysis.js");
|
|
91
|
+
Object.defineProperty(exports, "snow_predictive_analysis_def", { enumerable: true, get: function () { return snow_predictive_analysis_js_1.toolDefinition; } });
|
|
92
|
+
Object.defineProperty(exports, "snow_predictive_analysis_exec", { enumerable: true, get: function () { return snow_predictive_analysis_js_1.execute; } });
|
|
93
|
+
// Service Catalog
|
|
94
|
+
var snow_catalog_item_manager_js_1 = require("./snow_catalog_item_manager.js");
|
|
95
|
+
Object.defineProperty(exports, "snow_catalog_item_manager_def", { enumerable: true, get: function () { return snow_catalog_item_manager_js_1.toolDefinition; } });
|
|
96
|
+
Object.defineProperty(exports, "snow_catalog_item_manager_exec", { enumerable: true, get: function () { return snow_catalog_item_manager_js_1.execute; } });
|
|
97
|
+
var snow_catalog_item_search_js_1 = require("./snow_catalog_item_search.js");
|
|
98
|
+
Object.defineProperty(exports, "snow_catalog_item_search_def", { enumerable: true, get: function () { return snow_catalog_item_search_js_1.toolDefinition; } });
|
|
99
|
+
Object.defineProperty(exports, "snow_catalog_item_search_exec", { enumerable: true, get: function () { return snow_catalog_item_search_js_1.execute; } });
|
|
100
|
+
// Utility Operations
|
|
101
|
+
var snow_cleanup_test_artifacts_js_1 = require("./snow_cleanup_test_artifacts.js");
|
|
102
|
+
Object.defineProperty(exports, "snow_cleanup_test_artifacts_def", { enumerable: true, get: function () { return snow_cleanup_test_artifacts_js_1.toolDefinition; } });
|
|
103
|
+
Object.defineProperty(exports, "snow_cleanup_test_artifacts_exec", { enumerable: true, get: function () { return snow_cleanup_test_artifacts_js_1.execute; } });
|
|
104
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_analyze_incident - Analyze specific incidents
|
|
3
|
+
*
|
|
4
|
+
* Analyzes incidents with pattern recognition, similar incident matching, and automated resolution suggestions.
|
|
5
|
+
*/
|
|
6
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
7
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
8
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
9
|
+
export declare const version = "1.0.0";
|
|
10
|
+
export declare const author = "Snow-Flow SDK Migration";
|
|
11
|
+
//# sourceMappingURL=snow_analyze_incident.d.ts.map
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_analyze_incident - Analyze specific incidents
|
|
4
|
+
*
|
|
5
|
+
* Analyzes incidents with pattern recognition, similar incident matching, and automated resolution suggestions.
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
9
|
+
exports.execute = execute;
|
|
10
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
11
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
12
|
+
exports.toolDefinition = {
|
|
13
|
+
name: 'snow_analyze_incident',
|
|
14
|
+
description: 'Analyzes specific incidents with pattern recognition, similar incident matching, and automated resolution suggestions',
|
|
15
|
+
inputSchema: {
|
|
16
|
+
type: 'object',
|
|
17
|
+
properties: {
|
|
18
|
+
incident_id: {
|
|
19
|
+
type: 'string',
|
|
20
|
+
description: 'Incident number or sys_id to analyze'
|
|
21
|
+
},
|
|
22
|
+
include_similar: {
|
|
23
|
+
type: 'boolean',
|
|
24
|
+
description: 'Include similar incidents in analysis',
|
|
25
|
+
default: true
|
|
26
|
+
},
|
|
27
|
+
suggest_resolution: {
|
|
28
|
+
type: 'boolean',
|
|
29
|
+
description: 'Generate automated resolution suggestions',
|
|
30
|
+
default: true
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
required: ['incident_id']
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
// Common patterns for incident analysis
|
|
37
|
+
const commonPatterns = {
|
|
38
|
+
network_issues: {
|
|
39
|
+
keywords: ['network', 'connectivity', 'ping', 'dns', 'timeout', 'unreachable'],
|
|
40
|
+
solutions: ['Check network connectivity', 'Verify DNS resolution', 'Test ping to server', 'Review firewall rules']
|
|
41
|
+
},
|
|
42
|
+
database_issues: {
|
|
43
|
+
keywords: ['database', 'connection', 'sql', 'timeout', 'deadlock', 'performance'],
|
|
44
|
+
solutions: ['Check database connection', 'Review connection pool settings', 'Analyze query performance', 'Check for blocking processes']
|
|
45
|
+
},
|
|
46
|
+
application_errors: {
|
|
47
|
+
keywords: ['application', 'error', 'exception', 'crash', 'memory', 'cpu'],
|
|
48
|
+
solutions: ['Check application logs', 'Review memory usage', 'Analyze CPU utilization', 'Restart application service']
|
|
49
|
+
},
|
|
50
|
+
auth_issues: {
|
|
51
|
+
keywords: ['authentication', 'login', 'password', 'ldap', 'sso', 'unauthorized'],
|
|
52
|
+
solutions: ['Reset user password', 'Check LDAP connectivity', 'Verify SSO configuration', 'Review user permissions']
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
async function execute(args, context) {
|
|
56
|
+
const { incident_id, include_similar = true, suggest_resolution = true } = args;
|
|
57
|
+
try {
|
|
58
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
59
|
+
// Get incident details - try by number first, then sys_id
|
|
60
|
+
let query = `number=${incident_id}`;
|
|
61
|
+
let response = await client.get('/api/now/table/incident', {
|
|
62
|
+
params: { sysparm_query: query, sysparm_limit: 1 }
|
|
63
|
+
});
|
|
64
|
+
if (!response.data.result || response.data.result.length === 0) {
|
|
65
|
+
query = `sys_id=${incident_id}`;
|
|
66
|
+
response = await client.get('/api/now/table/incident', {
|
|
67
|
+
params: { sysparm_query: query, sysparm_limit: 1 }
|
|
68
|
+
});
|
|
69
|
+
}
|
|
70
|
+
if (!response.data.result || response.data.result.length === 0) {
|
|
71
|
+
return (0, error_handler_js_1.createErrorResult)(`Incident ${incident_id} not found`);
|
|
72
|
+
}
|
|
73
|
+
const incident = response.data.result[0];
|
|
74
|
+
// Perform pattern analysis
|
|
75
|
+
const patternsFound = [];
|
|
76
|
+
const suggestedResolution = [];
|
|
77
|
+
let confidenceScore = 0;
|
|
78
|
+
const description = (incident.short_description || '').toLowerCase();
|
|
79
|
+
for (const [patternName, pattern] of Object.entries(commonPatterns)) {
|
|
80
|
+
if (pattern.keywords.some(keyword => description.includes(keyword))) {
|
|
81
|
+
patternsFound.push(patternName);
|
|
82
|
+
suggestedResolution.push(...pattern.solutions);
|
|
83
|
+
confidenceScore += 0.2;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
// Root cause analysis
|
|
87
|
+
const rootCauseAnalysis = generateRootCauseAnalysis(patternsFound);
|
|
88
|
+
// Automated actions
|
|
89
|
+
const automatedActions = generateAutomatedActions(patternsFound);
|
|
90
|
+
// Find similar incidents if requested
|
|
91
|
+
let similarIncidents = [];
|
|
92
|
+
if (include_similar && patternsFound.length > 0) {
|
|
93
|
+
const similarQuery = `short_descriptionLIKE${incident.short_description}^sys_id!=${incident.sys_id}^state=6`;
|
|
94
|
+
const similarResponse = await client.get('/api/now/table/incident', {
|
|
95
|
+
params: { sysparm_query: similarQuery, sysparm_limit: 5 }
|
|
96
|
+
});
|
|
97
|
+
similarIncidents = similarResponse.data.result || [];
|
|
98
|
+
}
|
|
99
|
+
// Search knowledge base
|
|
100
|
+
let knowledgeArticles = [];
|
|
101
|
+
if (suggest_resolution) {
|
|
102
|
+
const kbQuery = `textLIKE${incident.short_description}^workflow_state=published`;
|
|
103
|
+
const kbResponse = await client.get('/api/now/table/kb_knowledge', {
|
|
104
|
+
params: { sysparm_query: kbQuery, sysparm_limit: 3 }
|
|
105
|
+
});
|
|
106
|
+
knowledgeArticles = kbResponse.data.result || [];
|
|
107
|
+
}
|
|
108
|
+
const analysis = {
|
|
109
|
+
incident_id: incident.number,
|
|
110
|
+
incident_sys_id: incident.sys_id,
|
|
111
|
+
patterns_found: patternsFound,
|
|
112
|
+
root_cause_analysis: rootCauseAnalysis,
|
|
113
|
+
suggested_resolution: suggestedResolution,
|
|
114
|
+
confidence_score: Math.min(confidenceScore, 1.0),
|
|
115
|
+
similar_incidents: similarIncidents.map(inc => ({
|
|
116
|
+
number: inc.number,
|
|
117
|
+
short_description: inc.short_description,
|
|
118
|
+
state: inc.state
|
|
119
|
+
})),
|
|
120
|
+
knowledge_articles: knowledgeArticles.map(kb => ({
|
|
121
|
+
number: kb.number,
|
|
122
|
+
short_description: kb.short_description,
|
|
123
|
+
text: kb.text ? kb.text.substring(0, 200) + '...' : ''
|
|
124
|
+
})),
|
|
125
|
+
automated_actions: automatedActions
|
|
126
|
+
};
|
|
127
|
+
return (0, error_handler_js_1.createSuccessResult)({ analysis }, { incident_id, patterns_found: patternsFound.length });
|
|
128
|
+
}
|
|
129
|
+
catch (error) {
|
|
130
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
function generateRootCauseAnalysis(patterns) {
|
|
134
|
+
if (patterns.length === 0) {
|
|
135
|
+
return 'No specific patterns detected. Manual investigation required.';
|
|
136
|
+
}
|
|
137
|
+
const analysis = [];
|
|
138
|
+
if (patterns.includes('network_issues')) {
|
|
139
|
+
analysis.push('Network connectivity issue detected. Check network infrastructure, DNS, and firewall rules.');
|
|
140
|
+
}
|
|
141
|
+
if (patterns.includes('database_issues')) {
|
|
142
|
+
analysis.push('Database connectivity or performance issue detected. Check database server, connection pools, and query performance.');
|
|
143
|
+
}
|
|
144
|
+
if (patterns.includes('application_errors')) {
|
|
145
|
+
analysis.push('Application error detected. Check application logs, resource utilization, and service status.');
|
|
146
|
+
}
|
|
147
|
+
if (patterns.includes('auth_issues')) {
|
|
148
|
+
analysis.push('Authentication issue detected. Check user credentials, LDAP/SSO configuration, and permissions.');
|
|
149
|
+
}
|
|
150
|
+
return analysis.join(' ');
|
|
151
|
+
}
|
|
152
|
+
function generateAutomatedActions(patterns) {
|
|
153
|
+
const actions = [];
|
|
154
|
+
if (patterns.includes('network_issues')) {
|
|
155
|
+
actions.push('Execute network connectivity test', 'Check DNS resolution', 'Verify firewall rules');
|
|
156
|
+
}
|
|
157
|
+
if (patterns.includes('database_issues')) {
|
|
158
|
+
actions.push('Test database connectivity', 'Check database performance metrics', 'Review connection pool status');
|
|
159
|
+
}
|
|
160
|
+
if (patterns.includes('application_errors')) {
|
|
161
|
+
actions.push('Restart application service', 'Check application logs', 'Monitor resource utilization');
|
|
162
|
+
}
|
|
163
|
+
if (patterns.includes('auth_issues')) {
|
|
164
|
+
actions.push('Reset user session', 'Verify user permissions', 'Check authentication service status');
|
|
165
|
+
}
|
|
166
|
+
return actions;
|
|
167
|
+
}
|
|
168
|
+
exports.version = '1.0.0';
|
|
169
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
170
|
+
//# sourceMappingURL=snow_analyze_incident.js.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_assign_task - Universal task assignment
|
|
3
|
+
*
|
|
4
|
+
* Assign tasks to users or groups with workload balancing,
|
|
5
|
+
* skill matching, and availability checking.
|
|
6
|
+
*/
|
|
7
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
8
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
9
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
10
|
+
export declare const version = "1.0.0";
|
|
11
|
+
export declare const author = "Snow-Flow SDK Migration";
|
|
12
|
+
//# sourceMappingURL=snow_assign_task.d.ts.map
|