snow-flow 4.6.9 → 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/mcp-persistent-guard.js +16 -8
- 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,190 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_analyze_query - Query optimization and analysis
|
|
4
|
+
*
|
|
5
|
+
* Analyze ServiceNow queries for performance bottlenecks, suggest
|
|
6
|
+
* optimizations, and provide index recommendations.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
10
|
+
exports.execute = execute;
|
|
11
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
12
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
13
|
+
exports.toolDefinition = {
|
|
14
|
+
name: 'snow_analyze_query',
|
|
15
|
+
description: 'Analyze and optimize ServiceNow queries for performance',
|
|
16
|
+
inputSchema: {
|
|
17
|
+
type: 'object',
|
|
18
|
+
properties: {
|
|
19
|
+
table: {
|
|
20
|
+
type: 'string',
|
|
21
|
+
description: 'Table name to query'
|
|
22
|
+
},
|
|
23
|
+
query: {
|
|
24
|
+
type: 'string',
|
|
25
|
+
description: 'Encoded query string to analyze'
|
|
26
|
+
},
|
|
27
|
+
analyze_indexes: {
|
|
28
|
+
type: 'boolean',
|
|
29
|
+
description: 'Check for index usage and recommendations',
|
|
30
|
+
default: true
|
|
31
|
+
},
|
|
32
|
+
suggest_optimizations: {
|
|
33
|
+
type: 'boolean',
|
|
34
|
+
description: 'Provide query optimization suggestions',
|
|
35
|
+
default: true
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
required: ['table', 'query']
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
async function execute(args, context) {
|
|
42
|
+
const { table, query, analyze_indexes = true, suggest_optimizations = true } = args;
|
|
43
|
+
try {
|
|
44
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
45
|
+
const analysis = {
|
|
46
|
+
query,
|
|
47
|
+
table,
|
|
48
|
+
issues: [],
|
|
49
|
+
suggestions: [],
|
|
50
|
+
index_analysis: null,
|
|
51
|
+
estimated_performance: 'unknown'
|
|
52
|
+
};
|
|
53
|
+
// Parse query conditions
|
|
54
|
+
const conditions = query.split('^').filter((c) => c.length > 0);
|
|
55
|
+
analysis.condition_count = conditions.length;
|
|
56
|
+
// Check for common anti-patterns
|
|
57
|
+
const antiPatterns = [];
|
|
58
|
+
// 1. Check for LIKE queries (slow)
|
|
59
|
+
if (query.includes('LIKE')) {
|
|
60
|
+
antiPatterns.push({
|
|
61
|
+
type: 'LIKE_QUERY',
|
|
62
|
+
severity: 'medium',
|
|
63
|
+
description: 'LIKE queries can be slow on large tables',
|
|
64
|
+
suggestion: 'Consider using indexed text search or exact matches where possible'
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
// 2. Check for OR conditions (can prevent index usage)
|
|
68
|
+
const orCount = (query.match(/\^OR/g) || []).length;
|
|
69
|
+
if (orCount > 2) {
|
|
70
|
+
antiPatterns.push({
|
|
71
|
+
type: 'EXCESSIVE_OR',
|
|
72
|
+
severity: 'high',
|
|
73
|
+
description: `Query contains ${orCount} OR conditions, which may prevent index usage`,
|
|
74
|
+
suggestion: 'Consider breaking into multiple queries or restructuring conditions'
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
// 3. Check for inequality conditions on multiple fields
|
|
78
|
+
const inequalities = conditions.filter((c) => c.includes('!=') || c.includes('>') || c.includes('<'));
|
|
79
|
+
if (inequalities.length > 3) {
|
|
80
|
+
antiPatterns.push({
|
|
81
|
+
type: 'MULTIPLE_INEQUALITIES',
|
|
82
|
+
severity: 'medium',
|
|
83
|
+
description: 'Multiple inequality conditions can be inefficient',
|
|
84
|
+
suggestion: 'Consider using equality conditions or range queries where possible'
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
// 4. Check for query on reference fields without joins
|
|
88
|
+
const refFields = conditions.filter((c) => c.includes('.'));
|
|
89
|
+
if (refFields.length > 0) {
|
|
90
|
+
analysis.uses_dot_walking = true;
|
|
91
|
+
antiPatterns.push({
|
|
92
|
+
type: 'DOT_WALKING',
|
|
93
|
+
severity: 'high',
|
|
94
|
+
description: 'Query uses dot-walking which requires table joins',
|
|
95
|
+
suggestion: 'Minimize dot-walking or ensure reference fields are indexed',
|
|
96
|
+
affected_conditions: refFields
|
|
97
|
+
});
|
|
98
|
+
}
|
|
99
|
+
analysis.anti_patterns = antiPatterns;
|
|
100
|
+
// Get table record count for performance estimation
|
|
101
|
+
const countResponse = await client.get(`/api/now/stats/${table}`, {
|
|
102
|
+
params: {
|
|
103
|
+
sysparm_count: 'true',
|
|
104
|
+
sysparm_query: query
|
|
105
|
+
}
|
|
106
|
+
});
|
|
107
|
+
const totalRecords = parseInt(countResponse.data.result?.stats?.count || '0');
|
|
108
|
+
analysis.matching_records = totalRecords;
|
|
109
|
+
// Analyze indexes if requested
|
|
110
|
+
if (analyze_indexes) {
|
|
111
|
+
const indexResponse = await client.get('/api/now/table/sys_db_index', {
|
|
112
|
+
params: {
|
|
113
|
+
sysparm_query: `table=${table}^active=true`,
|
|
114
|
+
sysparm_fields: 'name,indexed_column,unique',
|
|
115
|
+
sysparm_limit: 100
|
|
116
|
+
}
|
|
117
|
+
});
|
|
118
|
+
const indexes = indexResponse.data.result || [];
|
|
119
|
+
const indexedFields = indexes.map((idx) => idx.indexed_column?.value || idx.indexed_column);
|
|
120
|
+
// Check which query fields are indexed
|
|
121
|
+
const queryFields = conditions.map((c) => c.split(/[!=<>]/)[0]);
|
|
122
|
+
const indexedQueryFields = queryFields.filter((f) => indexedFields.includes(f));
|
|
123
|
+
const unindexedQueryFields = queryFields.filter((f) => !indexedFields.includes(f));
|
|
124
|
+
analysis.index_analysis = {
|
|
125
|
+
total_indexes: indexes.length,
|
|
126
|
+
indexed_query_fields: indexedQueryFields,
|
|
127
|
+
unindexed_query_fields: unindexedQueryFields,
|
|
128
|
+
index_coverage: indexedQueryFields.length / queryFields.length
|
|
129
|
+
};
|
|
130
|
+
if (unindexedQueryFields.length > 0) {
|
|
131
|
+
analysis.suggestions.push({
|
|
132
|
+
type: 'INDEX_RECOMMENDATION',
|
|
133
|
+
priority: 'high',
|
|
134
|
+
description: `Consider adding indexes for: ${unindexedQueryFields.join(', ')}`,
|
|
135
|
+
estimated_improvement: totalRecords > 10000 ? 'significant' : 'moderate'
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
// Estimate performance
|
|
140
|
+
if (totalRecords < 1000 && antiPatterns.length === 0) {
|
|
141
|
+
analysis.estimated_performance = 'excellent';
|
|
142
|
+
}
|
|
143
|
+
else if (totalRecords < 10000 && antiPatterns.length <= 1) {
|
|
144
|
+
analysis.estimated_performance = 'good';
|
|
145
|
+
}
|
|
146
|
+
else if (totalRecords < 100000 && antiPatterns.length <= 2) {
|
|
147
|
+
analysis.estimated_performance = 'moderate';
|
|
148
|
+
}
|
|
149
|
+
else {
|
|
150
|
+
analysis.estimated_performance = 'poor';
|
|
151
|
+
}
|
|
152
|
+
// Optimization suggestions
|
|
153
|
+
if (suggest_optimizations) {
|
|
154
|
+
if (analysis.estimated_performance === 'poor') {
|
|
155
|
+
analysis.suggestions.push({
|
|
156
|
+
type: 'QUERY_RESTRUCTURE',
|
|
157
|
+
priority: 'critical',
|
|
158
|
+
description: 'Query may perform poorly on large datasets',
|
|
159
|
+
actions: [
|
|
160
|
+
'Add appropriate indexes',
|
|
161
|
+
'Reduce number of OR conditions',
|
|
162
|
+
'Minimize dot-walking',
|
|
163
|
+
'Consider query caching'
|
|
164
|
+
]
|
|
165
|
+
});
|
|
166
|
+
}
|
|
167
|
+
if (conditions.length > 10) {
|
|
168
|
+
analysis.suggestions.push({
|
|
169
|
+
type: 'COMPLEXITY_REDUCTION',
|
|
170
|
+
priority: 'medium',
|
|
171
|
+
description: 'Query has many conditions which may be simplified',
|
|
172
|
+
suggestion: 'Review if all conditions are necessary'
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
return (0, error_handler_js_1.createSuccessResult)({
|
|
177
|
+
analysis,
|
|
178
|
+
performance_rating: analysis.estimated_performance,
|
|
179
|
+
issues_found: antiPatterns.length + (analysis.index_analysis?.unindexed_query_fields.length || 0),
|
|
180
|
+
optimization_potential: analysis.suggestions.length > 0,
|
|
181
|
+
recommendations: analysis.suggestions
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
catch (error) {
|
|
185
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
exports.version = '1.0.0';
|
|
189
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
190
|
+
//# sourceMappingURL=snow_analyze_query.js.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_batch_api - Batch API operations (80% API reduction)
|
|
3
|
+
*
|
|
4
|
+
* Execute multiple API operations in a single request using ServiceNow's
|
|
5
|
+
* Batch API, dramatically reducing network overhead and improving performance.
|
|
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_batch_api.d.ts.map
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_batch_api - Batch API operations (80% API reduction)
|
|
4
|
+
*
|
|
5
|
+
* Execute multiple API operations in a single request using ServiceNow's
|
|
6
|
+
* Batch API, dramatically reducing network overhead and improving performance.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
10
|
+
exports.execute = execute;
|
|
11
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
12
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
13
|
+
exports.toolDefinition = {
|
|
14
|
+
name: 'snow_batch_api',
|
|
15
|
+
description: 'Execute multiple API operations in single request (80% API call reduction)',
|
|
16
|
+
inputSchema: {
|
|
17
|
+
type: 'object',
|
|
18
|
+
properties: {
|
|
19
|
+
requests: {
|
|
20
|
+
type: 'array',
|
|
21
|
+
description: 'Array of API requests to batch',
|
|
22
|
+
items: {
|
|
23
|
+
type: 'object',
|
|
24
|
+
properties: {
|
|
25
|
+
id: { type: 'string', description: 'Unique identifier for this request' },
|
|
26
|
+
method: { type: 'string', enum: ['GET', 'POST', 'PUT', 'PATCH', 'DELETE'] },
|
|
27
|
+
url: { type: 'string', description: 'API endpoint path' },
|
|
28
|
+
headers: { type: 'object', description: 'Request headers' },
|
|
29
|
+
body: { type: 'object', description: 'Request body (for POST/PUT/PATCH)' }
|
|
30
|
+
},
|
|
31
|
+
required: ['id', 'method', 'url']
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
batch_execution_order: {
|
|
35
|
+
type: 'string',
|
|
36
|
+
enum: ['sequential', 'parallel'],
|
|
37
|
+
description: 'Execute requests sequentially or in parallel',
|
|
38
|
+
default: 'parallel'
|
|
39
|
+
},
|
|
40
|
+
exclude_reference_link: {
|
|
41
|
+
type: 'boolean',
|
|
42
|
+
description: 'Exclude reference links in responses',
|
|
43
|
+
default: true
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
required: ['requests']
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
async function execute(args, context) {
|
|
50
|
+
const { requests, batch_execution_order = 'parallel', exclude_reference_link = true } = args;
|
|
51
|
+
try {
|
|
52
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
53
|
+
if (!requests || requests.length === 0) {
|
|
54
|
+
throw new error_handler_js_1.SnowFlowError(error_handler_js_1.ErrorType.VALIDATION_ERROR, 'At least one request is required', { details: { message: 'Provide requests array with API operations' } });
|
|
55
|
+
}
|
|
56
|
+
if (requests.length > 100) {
|
|
57
|
+
throw new error_handler_js_1.SnowFlowError(error_handler_js_1.ErrorType.VALIDATION_ERROR, 'Maximum 100 requests allowed in batch', { details: { provided: requests.length, maximum: 100 } });
|
|
58
|
+
}
|
|
59
|
+
// Build batch request payload
|
|
60
|
+
const batchPayload = {
|
|
61
|
+
batch_request_id: `batch_${Date.now()}`,
|
|
62
|
+
rest_requests: requests.map((req) => ({
|
|
63
|
+
id: req.id,
|
|
64
|
+
method: req.method,
|
|
65
|
+
url: req.url,
|
|
66
|
+
headers: {
|
|
67
|
+
...req.headers,
|
|
68
|
+
'Content-Type': 'application/json'
|
|
69
|
+
},
|
|
70
|
+
body: req.body ? JSON.stringify(req.body) : undefined,
|
|
71
|
+
exclude_reference_link: exclude_reference_link.toString()
|
|
72
|
+
}))
|
|
73
|
+
};
|
|
74
|
+
// Execute batch request
|
|
75
|
+
const response = await client.post('/api/now/v1/batch', batchPayload, {
|
|
76
|
+
params: {
|
|
77
|
+
execution_order: batch_execution_order
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
const batchResult = response.data;
|
|
81
|
+
// Parse responses
|
|
82
|
+
const responses = (batchResult.serviced_requests || []).map((serviceReq) => ({
|
|
83
|
+
id: serviceReq.id,
|
|
84
|
+
status_code: serviceReq.status_code,
|
|
85
|
+
status_text: serviceReq.status_text,
|
|
86
|
+
body: serviceReq.body ? JSON.parse(serviceReq.body) : null,
|
|
87
|
+
headers: serviceReq.headers,
|
|
88
|
+
execution_time_ms: serviceReq.execution_time_ms
|
|
89
|
+
}));
|
|
90
|
+
// Calculate statistics
|
|
91
|
+
const stats = {
|
|
92
|
+
total_requests: requests.length,
|
|
93
|
+
successful: responses.filter((r) => r.status_code >= 200 && r.status_code < 300).length,
|
|
94
|
+
failed: responses.filter((r) => r.status_code >= 400).length,
|
|
95
|
+
total_execution_time_ms: responses.reduce((sum, r) => sum + (r.execution_time_ms || 0), 0),
|
|
96
|
+
average_time_per_request: responses.length > 0
|
|
97
|
+
? responses.reduce((sum, r) => sum + (r.execution_time_ms || 0), 0) / responses.length
|
|
98
|
+
: 0,
|
|
99
|
+
api_call_reduction: Math.round(((requests.length - 1) / requests.length) * 100)
|
|
100
|
+
};
|
|
101
|
+
return (0, error_handler_js_1.createSuccessResult)({
|
|
102
|
+
batch_id: batchResult.batch_request_id,
|
|
103
|
+
execution_order: batch_execution_order,
|
|
104
|
+
responses,
|
|
105
|
+
statistics: stats,
|
|
106
|
+
all_successful: stats.failed === 0,
|
|
107
|
+
performance_gain: `${stats.api_call_reduction}% fewer API calls`
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
catch (error) {
|
|
111
|
+
return (0, error_handler_js_1.createErrorResult)(error instanceof error_handler_js_1.SnowFlowError ? error : error.message);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
exports.version = '1.0.0';
|
|
115
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
116
|
+
//# sourceMappingURL=snow_batch_api.js.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_create_email_config - Email server configuration
|
|
3
|
+
*
|
|
4
|
+
* Create email server configurations for SMTP, POP3, or IMAP.
|
|
5
|
+
* Configures ports, encryption, and authentication.
|
|
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_create_email_config.d.ts.map
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_create_email_config - Email server configuration
|
|
4
|
+
*
|
|
5
|
+
* Create email server configurations for SMTP, POP3, or IMAP.
|
|
6
|
+
* Configures ports, encryption, and authentication.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
10
|
+
exports.execute = execute;
|
|
11
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
12
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
13
|
+
exports.toolDefinition = {
|
|
14
|
+
name: 'snow_create_email_config',
|
|
15
|
+
description: 'Create email server configuration for SMTP, POP3, or IMAP',
|
|
16
|
+
inputSchema: {
|
|
17
|
+
type: 'object',
|
|
18
|
+
properties: {
|
|
19
|
+
name: {
|
|
20
|
+
type: 'string',
|
|
21
|
+
description: 'Email configuration name'
|
|
22
|
+
},
|
|
23
|
+
serverType: {
|
|
24
|
+
type: 'string',
|
|
25
|
+
enum: ['SMTP', 'POP3', 'IMAP', 'SMTPS', 'POP3S', 'IMAPS'],
|
|
26
|
+
description: 'Email server type'
|
|
27
|
+
},
|
|
28
|
+
serverName: {
|
|
29
|
+
type: 'string',
|
|
30
|
+
description: 'Email server hostname or IP'
|
|
31
|
+
},
|
|
32
|
+
port: {
|
|
33
|
+
type: 'number',
|
|
34
|
+
description: 'Server port (default: auto-detect by type)'
|
|
35
|
+
},
|
|
36
|
+
encryption: {
|
|
37
|
+
type: 'string',
|
|
38
|
+
enum: ['SSL', 'TLS', 'None'],
|
|
39
|
+
description: 'Encryption type',
|
|
40
|
+
default: 'None'
|
|
41
|
+
},
|
|
42
|
+
username: {
|
|
43
|
+
type: 'string',
|
|
44
|
+
description: 'Authentication username'
|
|
45
|
+
},
|
|
46
|
+
password: {
|
|
47
|
+
type: 'string',
|
|
48
|
+
description: 'Authentication password'
|
|
49
|
+
},
|
|
50
|
+
description: {
|
|
51
|
+
type: 'string',
|
|
52
|
+
description: 'Configuration description'
|
|
53
|
+
},
|
|
54
|
+
active: {
|
|
55
|
+
type: 'boolean',
|
|
56
|
+
description: 'Active flag',
|
|
57
|
+
default: true
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
required: ['name', 'serverType', 'serverName']
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
const DEFAULT_PORTS = {
|
|
64
|
+
'SMTP': 587,
|
|
65
|
+
'SMTPS': 465,
|
|
66
|
+
'POP3': 110,
|
|
67
|
+
'POP3S': 995,
|
|
68
|
+
'IMAP': 143,
|
|
69
|
+
'IMAPS': 993
|
|
70
|
+
};
|
|
71
|
+
async function execute(args, context) {
|
|
72
|
+
const { name, serverType, serverName, port, encryption = 'None', username = '', password = '', description = '', active = true } = args;
|
|
73
|
+
try {
|
|
74
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
75
|
+
// Auto-detect port if not specified
|
|
76
|
+
const finalPort = port || DEFAULT_PORTS[serverType] || 25;
|
|
77
|
+
const emailConfigData = {
|
|
78
|
+
name,
|
|
79
|
+
type: serverType,
|
|
80
|
+
server: serverName,
|
|
81
|
+
port: finalPort,
|
|
82
|
+
encryption,
|
|
83
|
+
user_name: username,
|
|
84
|
+
password,
|
|
85
|
+
description,
|
|
86
|
+
active
|
|
87
|
+
};
|
|
88
|
+
const response = await client.post('/api/now/table/sys_email_account', emailConfigData);
|
|
89
|
+
const emailConfig = response.data.result;
|
|
90
|
+
return (0, error_handler_js_1.createSuccessResult)({
|
|
91
|
+
created: true,
|
|
92
|
+
email_config: {
|
|
93
|
+
sys_id: emailConfig.sys_id,
|
|
94
|
+
name: emailConfig.name,
|
|
95
|
+
type: serverType,
|
|
96
|
+
server: serverName,
|
|
97
|
+
port: finalPort,
|
|
98
|
+
encryption,
|
|
99
|
+
active
|
|
100
|
+
},
|
|
101
|
+
message: `Email configuration '${name}' created successfully for ${serverType} on ${serverName}:${finalPort}`
|
|
102
|
+
});
|
|
103
|
+
}
|
|
104
|
+
catch (error) {
|
|
105
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
exports.version = '1.0.0';
|
|
109
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
110
|
+
//# sourceMappingURL=snow_create_email_config.js.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_create_event - System event creation
|
|
3
|
+
*
|
|
4
|
+
* Create and trigger ServiceNow system events with parameters,
|
|
5
|
+
* queuing, and notification integration.
|
|
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_create_event.d.ts.map
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_create_event - System event creation
|
|
4
|
+
*
|
|
5
|
+
* Create and trigger ServiceNow system events with parameters,
|
|
6
|
+
* queuing, and notification integration.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
10
|
+
exports.execute = execute;
|
|
11
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
12
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
13
|
+
exports.toolDefinition = {
|
|
14
|
+
name: 'snow_create_event',
|
|
15
|
+
description: 'Create and trigger system events with parameters',
|
|
16
|
+
inputSchema: {
|
|
17
|
+
type: 'object',
|
|
18
|
+
properties: {
|
|
19
|
+
name: {
|
|
20
|
+
type: 'string',
|
|
21
|
+
description: 'Event name'
|
|
22
|
+
},
|
|
23
|
+
table: {
|
|
24
|
+
type: 'string',
|
|
25
|
+
description: 'Table associated with event'
|
|
26
|
+
},
|
|
27
|
+
record_sys_id: {
|
|
28
|
+
type: 'string',
|
|
29
|
+
description: 'Record sys_id that triggered the event'
|
|
30
|
+
},
|
|
31
|
+
parameters: {
|
|
32
|
+
type: 'object',
|
|
33
|
+
description: 'Event parameters (key-value pairs)'
|
|
34
|
+
},
|
|
35
|
+
description: {
|
|
36
|
+
type: 'string',
|
|
37
|
+
description: 'Event description'
|
|
38
|
+
},
|
|
39
|
+
trigger_immediately: {
|
|
40
|
+
type: 'boolean',
|
|
41
|
+
description: 'Trigger event immediately vs queue for processing',
|
|
42
|
+
default: true
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
required: ['name']
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
async function execute(args, context) {
|
|
49
|
+
const { name, table = '', record_sys_id = '', parameters = {}, description = '', trigger_immediately = true } = args;
|
|
50
|
+
try {
|
|
51
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
52
|
+
if (trigger_immediately) {
|
|
53
|
+
// Trigger event immediately using script
|
|
54
|
+
const paramString = Object.entries(parameters)
|
|
55
|
+
.map(([key, value]) => `parm${Object.keys(parameters).indexOf(key) + 1}: '${value}'`)
|
|
56
|
+
.join(', ');
|
|
57
|
+
const triggerScript = `
|
|
58
|
+
var eventName = '${name}';
|
|
59
|
+
var gr = null;
|
|
60
|
+
${table && record_sys_id ? `
|
|
61
|
+
gr = new GlideRecord('${table}');
|
|
62
|
+
if (gr.get('${record_sys_id}')) {
|
|
63
|
+
gs.eventQueue(eventName, gr, ${paramString || ''});
|
|
64
|
+
}
|
|
65
|
+
` : `
|
|
66
|
+
gs.eventQueue(eventName, gr, ${paramString || ''});
|
|
67
|
+
`}
|
|
68
|
+
gs.info('Event triggered: ' + eventName);
|
|
69
|
+
`;
|
|
70
|
+
await client.post('/api/now/table/sys_script_execution', {
|
|
71
|
+
script: triggerScript
|
|
72
|
+
});
|
|
73
|
+
return (0, error_handler_js_1.createSuccessResult)({
|
|
74
|
+
triggered: true,
|
|
75
|
+
event_name: name,
|
|
76
|
+
table,
|
|
77
|
+
record_sys_id,
|
|
78
|
+
parameters,
|
|
79
|
+
execution_mode: 'immediate',
|
|
80
|
+
message: 'Event queued for immediate processing'
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
else {
|
|
84
|
+
// Create event queue record
|
|
85
|
+
const eventData = {
|
|
86
|
+
event_name: name,
|
|
87
|
+
table,
|
|
88
|
+
instance: record_sys_id,
|
|
89
|
+
param1: parameters.param1 || '',
|
|
90
|
+
param2: parameters.param2 || '',
|
|
91
|
+
queue: 'default',
|
|
92
|
+
state: 'ready'
|
|
93
|
+
};
|
|
94
|
+
const response = await client.post('/api/now/table/sysevent', eventData);
|
|
95
|
+
const eventRecord = response.data.result;
|
|
96
|
+
return (0, error_handler_js_1.createSuccessResult)({
|
|
97
|
+
triggered: true,
|
|
98
|
+
event: {
|
|
99
|
+
sys_id: eventRecord.sys_id,
|
|
100
|
+
event_name: name,
|
|
101
|
+
table,
|
|
102
|
+
record_sys_id,
|
|
103
|
+
queue: 'default',
|
|
104
|
+
state: 'ready'
|
|
105
|
+
},
|
|
106
|
+
execution_mode: 'queued',
|
|
107
|
+
message: 'Event queued for processing'
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
catch (error) {
|
|
112
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
exports.version = '1.0.0';
|
|
116
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
117
|
+
//# sourceMappingURL=snow_create_event.js.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_create_field_map - Field mapping for transform maps
|
|
3
|
+
*
|
|
4
|
+
* Create field mappings within transform maps. Supports data transformation,
|
|
5
|
+
* coalescing, and default values.
|
|
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_create_field_map.d.ts.map
|