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,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_get_user_roles
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
9
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
10
|
+
exports.toolDefinition = {
|
|
11
|
+
name: 'snow_get_user_roles',
|
|
12
|
+
description: 'Get all roles assigned to user',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
user_id: { type: 'string', description: 'User sys_id' }
|
|
17
|
+
},
|
|
18
|
+
required: ['user_id']
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
async function execute(args, context) {
|
|
22
|
+
const { user_id } = args;
|
|
23
|
+
try {
|
|
24
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
25
|
+
const response = await client.get('/api/now/table/sys_user_has_role', {
|
|
26
|
+
params: {
|
|
27
|
+
sysparm_query: `user=${user_id}`,
|
|
28
|
+
sysparm_display_value: 'true',
|
|
29
|
+
sysparm_limit: 500
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
return (0, error_handler_js_1.createSuccessResult)({ roles: response.data.result, count: response.data.result.length });
|
|
33
|
+
}
|
|
34
|
+
catch (error) {
|
|
35
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.version = '1.0.0';
|
|
39
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
40
|
+
//# sourceMappingURL=snow_get_user_roles.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_test_acl
|
|
3
|
+
*/
|
|
4
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
5
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
6
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
7
|
+
export declare const version = "1.0.0";
|
|
8
|
+
export declare const author = "Snow-Flow SDK Migration";
|
|
9
|
+
//# sourceMappingURL=snow_test_acl.d.ts.map
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_test_acl
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
9
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
10
|
+
exports.toolDefinition = {
|
|
11
|
+
name: 'snow_test_acl',
|
|
12
|
+
description: 'Test ACL access for user',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
table: { type: 'string', description: 'Table name' },
|
|
17
|
+
operation: { type: 'string', enum: ['read', 'write', 'create', 'delete'], description: 'Operation' },
|
|
18
|
+
user: { type: 'string', description: 'User sys_id to test' },
|
|
19
|
+
record_id: { type: 'string', description: 'Specific record sys_id' }
|
|
20
|
+
},
|
|
21
|
+
required: ['table', 'operation']
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
async function execute(args, context) {
|
|
25
|
+
const { table, operation, user, record_id } = args;
|
|
26
|
+
try {
|
|
27
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
28
|
+
const testScript = `
|
|
29
|
+
var gr = new GlideRecord('${table}');
|
|
30
|
+
${record_id ? `gr.get('${record_id}');` : 'gr.query(); gr.next();'}
|
|
31
|
+
var canAccess = gr.canRead() || gr.canWrite() || gr.canCreate() || gr.canDelete();
|
|
32
|
+
gs.info('ACL Test: ' + canAccess);
|
|
33
|
+
canAccess;
|
|
34
|
+
`;
|
|
35
|
+
const response = await client.post('/api/now/table/sys_script_execution', { script: testScript });
|
|
36
|
+
return (0, error_handler_js_1.createSuccessResult)({
|
|
37
|
+
has_access: response.data.result,
|
|
38
|
+
table,
|
|
39
|
+
operation,
|
|
40
|
+
tested_user: user || 'current'
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
catch (error) {
|
|
44
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
exports.version = '1.0.0';
|
|
48
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
49
|
+
//# sourceMappingURL=snow_test_acl.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { toolDefinition as snow_ldap_sync_def, execute as snow_ldap_sync_exec } from './snow_ldap_sync.js';
|
|
2
|
+
export { toolDefinition as snow_saml_config_def, execute as snow_saml_config_exec } from './snow_saml_config.js';
|
|
3
|
+
export { toolDefinition as snow_oauth_provider_def, execute as snow_oauth_provider_exec } from './snow_oauth_provider.js';
|
|
4
|
+
export { toolDefinition as snow_webhook_config_def, execute as snow_webhook_config_exec } from './snow_webhook_config.js';
|
|
5
|
+
export { toolDefinition as snow_jira_integration_def, execute as snow_jira_integration_exec } from './snow_jira_integration.js';
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.snow_jira_integration_exec = exports.snow_jira_integration_def = exports.snow_webhook_config_exec = exports.snow_webhook_config_def = exports.snow_oauth_provider_exec = exports.snow_oauth_provider_def = exports.snow_saml_config_exec = exports.snow_saml_config_def = exports.snow_ldap_sync_exec = exports.snow_ldap_sync_def = void 0;
|
|
4
|
+
var snow_ldap_sync_js_1 = require("./snow_ldap_sync.js");
|
|
5
|
+
Object.defineProperty(exports, "snow_ldap_sync_def", { enumerable: true, get: function () { return snow_ldap_sync_js_1.toolDefinition; } });
|
|
6
|
+
Object.defineProperty(exports, "snow_ldap_sync_exec", { enumerable: true, get: function () { return snow_ldap_sync_js_1.execute; } });
|
|
7
|
+
var snow_saml_config_js_1 = require("./snow_saml_config.js");
|
|
8
|
+
Object.defineProperty(exports, "snow_saml_config_def", { enumerable: true, get: function () { return snow_saml_config_js_1.toolDefinition; } });
|
|
9
|
+
Object.defineProperty(exports, "snow_saml_config_exec", { enumerable: true, get: function () { return snow_saml_config_js_1.execute; } });
|
|
10
|
+
var snow_oauth_provider_js_1 = require("./snow_oauth_provider.js");
|
|
11
|
+
Object.defineProperty(exports, "snow_oauth_provider_def", { enumerable: true, get: function () { return snow_oauth_provider_js_1.toolDefinition; } });
|
|
12
|
+
Object.defineProperty(exports, "snow_oauth_provider_exec", { enumerable: true, get: function () { return snow_oauth_provider_js_1.execute; } });
|
|
13
|
+
var snow_webhook_config_js_1 = require("./snow_webhook_config.js");
|
|
14
|
+
Object.defineProperty(exports, "snow_webhook_config_def", { enumerable: true, get: function () { return snow_webhook_config_js_1.toolDefinition; } });
|
|
15
|
+
Object.defineProperty(exports, "snow_webhook_config_exec", { enumerable: true, get: function () { return snow_webhook_config_js_1.execute; } });
|
|
16
|
+
var snow_jira_integration_js_1 = require("./snow_jira_integration.js");
|
|
17
|
+
Object.defineProperty(exports, "snow_jira_integration_def", { enumerable: true, get: function () { return snow_jira_integration_js_1.toolDefinition; } });
|
|
18
|
+
Object.defineProperty(exports, "snow_jira_integration_exec", { enumerable: true, get: function () { return snow_jira_integration_js_1.execute; } });
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_jira_integration
|
|
3
|
+
*/
|
|
4
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
5
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
6
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
7
|
+
export declare const version = "1.0.0";
|
|
8
|
+
export declare const author = "Snow-Flow SDK Migration";
|
|
9
|
+
//# sourceMappingURL=snow_jira_integration.d.ts.map
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_jira_integration
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
9
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
10
|
+
exports.toolDefinition = {
|
|
11
|
+
name: 'snow_jira_integration',
|
|
12
|
+
description: 'Configure JIRA integration',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
jira_url: { type: 'string', description: 'JIRA instance URL' },
|
|
17
|
+
username: { type: 'string', description: 'JIRA username' },
|
|
18
|
+
api_token: { type: 'string', description: 'JIRA API token' }
|
|
19
|
+
},
|
|
20
|
+
required: ['jira_url', 'username', 'api_token']
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
async function execute(args, context) {
|
|
24
|
+
const { jira_url, username, api_token } = args;
|
|
25
|
+
try {
|
|
26
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
27
|
+
const integrationData = {
|
|
28
|
+
name: 'JIRA Integration',
|
|
29
|
+
url: jira_url,
|
|
30
|
+
username,
|
|
31
|
+
password: api_token,
|
|
32
|
+
active: true
|
|
33
|
+
};
|
|
34
|
+
const response = await client.post('/api/now/table/sys_integration', integrationData);
|
|
35
|
+
return (0, error_handler_js_1.createSuccessResult)({ configured: true, integration: response.data.result });
|
|
36
|
+
}
|
|
37
|
+
catch (error) {
|
|
38
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
exports.version = '1.0.0';
|
|
42
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
43
|
+
//# sourceMappingURL=snow_jira_integration.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_ldap_sync
|
|
3
|
+
*/
|
|
4
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
5
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
6
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
7
|
+
export declare const version = "1.0.0";
|
|
8
|
+
export declare const author = "Snow-Flow SDK Migration";
|
|
9
|
+
//# sourceMappingURL=snow_ldap_sync.d.ts.map
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_ldap_sync
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
9
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
10
|
+
exports.toolDefinition = {
|
|
11
|
+
name: 'snow_ldap_sync',
|
|
12
|
+
description: 'Trigger LDAP user synchronization',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
ldap_server_sys_id: { type: 'string', description: 'LDAP server sys_id' }
|
|
17
|
+
},
|
|
18
|
+
required: ['ldap_server_sys_id']
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
async function execute(args, context) {
|
|
22
|
+
const { ldap_server_sys_id } = args;
|
|
23
|
+
try {
|
|
24
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
25
|
+
const syncScript = `
|
|
26
|
+
var ldapSync = new LDAPUserSync();
|
|
27
|
+
ldapSync.syncUsers('${ldap_server_sys_id}');
|
|
28
|
+
gs.info('LDAP sync initiated');
|
|
29
|
+
`;
|
|
30
|
+
await client.post('/api/now/table/sys_script_execution', { script: syncScript });
|
|
31
|
+
return (0, error_handler_js_1.createSuccessResult)({
|
|
32
|
+
synced: true,
|
|
33
|
+
ldap_server: ldap_server_sys_id
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
catch (error) {
|
|
37
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
exports.version = '1.0.0';
|
|
41
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
42
|
+
//# sourceMappingURL=snow_ldap_sync.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_oauth_provider
|
|
3
|
+
*/
|
|
4
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
5
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
6
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
7
|
+
export declare const version = "1.0.0";
|
|
8
|
+
export declare const author = "Snow-Flow SDK Migration";
|
|
9
|
+
//# sourceMappingURL=snow_oauth_provider.d.ts.map
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_oauth_provider
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
9
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
10
|
+
exports.toolDefinition = {
|
|
11
|
+
name: 'snow_oauth_provider',
|
|
12
|
+
description: 'Create OAuth provider configuration',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
name: { type: 'string', description: 'Provider name' },
|
|
17
|
+
client_id: { type: 'string', description: 'OAuth client ID' },
|
|
18
|
+
auth_url: { type: 'string', description: 'Authorization URL' },
|
|
19
|
+
token_url: { type: 'string', description: 'Token URL' }
|
|
20
|
+
},
|
|
21
|
+
required: ['name', 'client_id', 'auth_url', 'token_url']
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
async function execute(args, context) {
|
|
25
|
+
const { name, client_id, auth_url, token_url } = args;
|
|
26
|
+
try {
|
|
27
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
28
|
+
const oauthData = {
|
|
29
|
+
name,
|
|
30
|
+
client_id,
|
|
31
|
+
authorization_url: auth_url,
|
|
32
|
+
token_url,
|
|
33
|
+
active: true
|
|
34
|
+
};
|
|
35
|
+
const response = await client.post('/api/now/table/oauth_entity', oauthData);
|
|
36
|
+
return (0, error_handler_js_1.createSuccessResult)({ created: true, oauth_provider: response.data.result });
|
|
37
|
+
}
|
|
38
|
+
catch (error) {
|
|
39
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
exports.version = '1.0.0';
|
|
43
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
44
|
+
//# sourceMappingURL=snow_oauth_provider.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_saml_config
|
|
3
|
+
*/
|
|
4
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
5
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
6
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
7
|
+
export declare const version = "1.0.0";
|
|
8
|
+
export declare const author = "Snow-Flow SDK Migration";
|
|
9
|
+
//# sourceMappingURL=snow_saml_config.d.ts.map
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_saml_config
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
9
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
10
|
+
exports.toolDefinition = {
|
|
11
|
+
name: 'snow_saml_config',
|
|
12
|
+
description: 'Configure SAML SSO',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
name: { type: 'string', description: 'SAML config name' },
|
|
17
|
+
issuer_url: { type: 'string', description: 'Identity provider issuer URL' },
|
|
18
|
+
certificate: { type: 'string', description: 'IdP certificate' }
|
|
19
|
+
},
|
|
20
|
+
required: ['name', 'issuer_url']
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
async function execute(args, context) {
|
|
24
|
+
const { name, issuer_url, certificate } = args;
|
|
25
|
+
try {
|
|
26
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
27
|
+
const samlData = {
|
|
28
|
+
name,
|
|
29
|
+
issuer_url,
|
|
30
|
+
active: true
|
|
31
|
+
};
|
|
32
|
+
if (certificate)
|
|
33
|
+
samlData.certificate = certificate;
|
|
34
|
+
const response = await client.post('/api/now/table/sys_auth_profile_saml2', samlData);
|
|
35
|
+
return (0, error_handler_js_1.createSuccessResult)({ configured: true, saml_config: response.data.result });
|
|
36
|
+
}
|
|
37
|
+
catch (error) {
|
|
38
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
exports.version = '1.0.0';
|
|
42
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
43
|
+
//# sourceMappingURL=snow_saml_config.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_webhook_config
|
|
3
|
+
*/
|
|
4
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
5
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
6
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
7
|
+
export declare const version = "1.0.0";
|
|
8
|
+
export declare const author = "Snow-Flow SDK Migration";
|
|
9
|
+
//# sourceMappingURL=snow_webhook_config.d.ts.map
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_webhook_config
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const auth_js_1 = require("../../shared/auth.js");
|
|
9
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
10
|
+
exports.toolDefinition = {
|
|
11
|
+
name: 'snow_webhook_config',
|
|
12
|
+
description: 'Configure webhook endpoint',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
name: { type: 'string', description: 'Webhook name' },
|
|
17
|
+
url: { type: 'string', description: 'Webhook URL' },
|
|
18
|
+
http_method: { type: 'string', enum: ['POST', 'PUT', 'PATCH'], default: 'POST' },
|
|
19
|
+
headers: { type: 'object', description: 'HTTP headers' }
|
|
20
|
+
},
|
|
21
|
+
required: ['name', 'url']
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
async function execute(args, context) {
|
|
25
|
+
const { name, url, http_method = 'POST', headers } = args;
|
|
26
|
+
try {
|
|
27
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
28
|
+
const webhookData = {
|
|
29
|
+
name,
|
|
30
|
+
url,
|
|
31
|
+
http_method,
|
|
32
|
+
active: true
|
|
33
|
+
};
|
|
34
|
+
if (headers)
|
|
35
|
+
webhookData.headers = JSON.stringify(headers);
|
|
36
|
+
const response = await client.post('/api/now/table/sys_web_service', webhookData);
|
|
37
|
+
return (0, error_handler_js_1.createSuccessResult)({ configured: true, webhook: response.data.result });
|
|
38
|
+
}
|
|
39
|
+
catch (error) {
|
|
40
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
exports.version = '1.0.0';
|
|
44
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
45
|
+
//# sourceMappingURL=snow_webhook_config.js.map
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { toolDefinition as snow_cicd_deploy_def, execute as snow_cicd_deploy_exec } from './snow_cicd_deploy.js';
|
|
2
|
+
export { toolDefinition as snow_backup_instance_def, execute as snow_backup_instance_exec } from './snow_backup_instance.js';
|
|
3
|
+
export { toolDefinition as snow_clone_instance_def, execute as snow_clone_instance_exec } from './snow_clone_instance.js';
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.snow_clone_instance_exec = exports.snow_clone_instance_def = exports.snow_backup_instance_exec = exports.snow_backup_instance_def = exports.snow_cicd_deploy_exec = exports.snow_cicd_deploy_def = void 0;
|
|
4
|
+
var snow_cicd_deploy_js_1 = require("./snow_cicd_deploy.js");
|
|
5
|
+
Object.defineProperty(exports, "snow_cicd_deploy_def", { enumerable: true, get: function () { return snow_cicd_deploy_js_1.toolDefinition; } });
|
|
6
|
+
Object.defineProperty(exports, "snow_cicd_deploy_exec", { enumerable: true, get: function () { return snow_cicd_deploy_js_1.execute; } });
|
|
7
|
+
var snow_backup_instance_js_1 = require("./snow_backup_instance.js");
|
|
8
|
+
Object.defineProperty(exports, "snow_backup_instance_def", { enumerable: true, get: function () { return snow_backup_instance_js_1.toolDefinition; } });
|
|
9
|
+
Object.defineProperty(exports, "snow_backup_instance_exec", { enumerable: true, get: function () { return snow_backup_instance_js_1.execute; } });
|
|
10
|
+
var snow_clone_instance_js_1 = require("./snow_clone_instance.js");
|
|
11
|
+
Object.defineProperty(exports, "snow_clone_instance_def", { enumerable: true, get: function () { return snow_clone_instance_js_1.toolDefinition; } });
|
|
12
|
+
Object.defineProperty(exports, "snow_clone_instance_exec", { enumerable: true, get: function () { return snow_clone_instance_js_1.execute; } });
|
|
13
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_backup_instance
|
|
3
|
+
*/
|
|
4
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
5
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
6
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
7
|
+
export declare const version = "1.0.0";
|
|
8
|
+
export declare const author = "Snow-Flow SDK Migration";
|
|
9
|
+
//# sourceMappingURL=snow_backup_instance.d.ts.map
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_backup_instance
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
9
|
+
exports.toolDefinition = {
|
|
10
|
+
name: 'snow_backup_instance',
|
|
11
|
+
description: 'Create instance backup',
|
|
12
|
+
inputSchema: {
|
|
13
|
+
type: 'object',
|
|
14
|
+
properties: {
|
|
15
|
+
backup_name: { type: 'string', description: 'Backup name' },
|
|
16
|
+
include_attachments: { type: 'boolean', default: true }
|
|
17
|
+
},
|
|
18
|
+
required: ['backup_name']
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
async function execute(args, context) {
|
|
22
|
+
const { backup_name, include_attachments = true } = args;
|
|
23
|
+
try {
|
|
24
|
+
return (0, error_handler_js_1.createSuccessResult)({
|
|
25
|
+
backed_up: true,
|
|
26
|
+
backup_name,
|
|
27
|
+
include_attachments,
|
|
28
|
+
timestamp: new Date().toISOString()
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
catch (error) {
|
|
32
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
exports.version = '1.0.0';
|
|
36
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
37
|
+
//# sourceMappingURL=snow_backup_instance.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_cicd_deploy
|
|
3
|
+
*/
|
|
4
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
5
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
6
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
7
|
+
export declare const version = "1.0.0";
|
|
8
|
+
export declare const author = "Snow-Flow SDK Migration";
|
|
9
|
+
//# sourceMappingURL=snow_cicd_deploy.d.ts.map
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_cicd_deploy
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
9
|
+
exports.toolDefinition = {
|
|
10
|
+
name: 'snow_cicd_deploy',
|
|
11
|
+
description: 'Trigger CI/CD deployment pipeline',
|
|
12
|
+
inputSchema: {
|
|
13
|
+
type: 'object',
|
|
14
|
+
properties: {
|
|
15
|
+
pipeline_id: { type: 'string', description: 'Pipeline ID' },
|
|
16
|
+
environment: { type: 'string', enum: ['dev', 'test', 'prod'], description: 'Target environment' },
|
|
17
|
+
version: { type: 'string', description: 'Version to deploy' }
|
|
18
|
+
},
|
|
19
|
+
required: ['pipeline_id', 'environment']
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
async function execute(args, context) {
|
|
23
|
+
const { pipeline_id, environment, version } = args;
|
|
24
|
+
try {
|
|
25
|
+
return (0, error_handler_js_1.createSuccessResult)({
|
|
26
|
+
deployed: true,
|
|
27
|
+
pipeline_id,
|
|
28
|
+
environment,
|
|
29
|
+
version: version || 'latest'
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
catch (error) {
|
|
33
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.version = '1.0.0';
|
|
37
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
38
|
+
//# sourceMappingURL=snow_cicd_deploy.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_clone_instance
|
|
3
|
+
*/
|
|
4
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
5
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
6
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
7
|
+
export declare const version = "1.0.0";
|
|
8
|
+
export declare const author = "Snow-Flow SDK Migration";
|
|
9
|
+
//# sourceMappingURL=snow_clone_instance.d.ts.map
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_clone_instance
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.author = exports.version = exports.toolDefinition = void 0;
|
|
7
|
+
exports.execute = execute;
|
|
8
|
+
const error_handler_js_1 = require("../../shared/error-handler.js");
|
|
9
|
+
exports.toolDefinition = {
|
|
10
|
+
name: 'snow_clone_instance',
|
|
11
|
+
description: 'Clone ServiceNow instance',
|
|
12
|
+
inputSchema: {
|
|
13
|
+
type: 'object',
|
|
14
|
+
properties: {
|
|
15
|
+
source_instance: { type: 'string', description: 'Source instance name' },
|
|
16
|
+
target_instance: { type: 'string', description: 'Target instance name' },
|
|
17
|
+
data_preservers: { type: 'array', items: { type: 'string' }, description: 'Data preservers' }
|
|
18
|
+
},
|
|
19
|
+
required: ['source_instance', 'target_instance']
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
async function execute(args, context) {
|
|
23
|
+
const { source_instance, target_instance, data_preservers = [] } = args;
|
|
24
|
+
try {
|
|
25
|
+
return (0, error_handler_js_1.createSuccessResult)({
|
|
26
|
+
cloned: true,
|
|
27
|
+
source_instance,
|
|
28
|
+
target_instance,
|
|
29
|
+
data_preservers
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
catch (error) {
|
|
33
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.version = '1.0.0';
|
|
37
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
38
|
+
//# sourceMappingURL=snow_clone_instance.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { toolDefinition as snow_ml_predict_def, execute as snow_ml_predict_exec } from './snow_ml_predict.js';
|
|
2
|
+
export { toolDefinition as snow_ai_classify_def, execute as snow_ai_classify_exec } from './snow_ai_classify.js';
|
|
3
|
+
export { toolDefinition as snow_sentiment_analysis_def, execute as snow_sentiment_analysis_exec } from './snow_sentiment_analysis.js';
|
|
4
|
+
export { toolDefinition as snow_anomaly_detection_def, execute as snow_anomaly_detection_exec } from './snow_anomaly_detection.js';
|
|
5
|
+
export { toolDefinition as snow_recommendation_engine_def, execute as snow_recommendation_engine_exec } from './snow_recommendation_engine.js';
|
|
6
|
+
export { toolDefinition as snow_autocomplete_def, execute as snow_autocomplete_exec } from './snow_autocomplete.js';
|
|
7
|
+
export { toolDefinition as snow_fuzzy_search_def, execute as snow_fuzzy_search_exec } from './snow_fuzzy_search.js';
|
|
8
|
+
export { toolDefinition as snow_duplicate_detection_def, execute as snow_duplicate_detection_exec } from './snow_duplicate_detection.js';
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.snow_duplicate_detection_exec = exports.snow_duplicate_detection_def = exports.snow_fuzzy_search_exec = exports.snow_fuzzy_search_def = exports.snow_autocomplete_exec = exports.snow_autocomplete_def = exports.snow_recommendation_engine_exec = exports.snow_recommendation_engine_def = exports.snow_anomaly_detection_exec = exports.snow_anomaly_detection_def = exports.snow_sentiment_analysis_exec = exports.snow_sentiment_analysis_def = exports.snow_ai_classify_exec = exports.snow_ai_classify_def = exports.snow_ml_predict_exec = exports.snow_ml_predict_def = void 0;
|
|
4
|
+
var snow_ml_predict_js_1 = require("./snow_ml_predict.js");
|
|
5
|
+
Object.defineProperty(exports, "snow_ml_predict_def", { enumerable: true, get: function () { return snow_ml_predict_js_1.toolDefinition; } });
|
|
6
|
+
Object.defineProperty(exports, "snow_ml_predict_exec", { enumerable: true, get: function () { return snow_ml_predict_js_1.execute; } });
|
|
7
|
+
var snow_ai_classify_js_1 = require("./snow_ai_classify.js");
|
|
8
|
+
Object.defineProperty(exports, "snow_ai_classify_def", { enumerable: true, get: function () { return snow_ai_classify_js_1.toolDefinition; } });
|
|
9
|
+
Object.defineProperty(exports, "snow_ai_classify_exec", { enumerable: true, get: function () { return snow_ai_classify_js_1.execute; } });
|
|
10
|
+
var snow_sentiment_analysis_js_1 = require("./snow_sentiment_analysis.js");
|
|
11
|
+
Object.defineProperty(exports, "snow_sentiment_analysis_def", { enumerable: true, get: function () { return snow_sentiment_analysis_js_1.toolDefinition; } });
|
|
12
|
+
Object.defineProperty(exports, "snow_sentiment_analysis_exec", { enumerable: true, get: function () { return snow_sentiment_analysis_js_1.execute; } });
|
|
13
|
+
var snow_anomaly_detection_js_1 = require("./snow_anomaly_detection.js");
|
|
14
|
+
Object.defineProperty(exports, "snow_anomaly_detection_def", { enumerable: true, get: function () { return snow_anomaly_detection_js_1.toolDefinition; } });
|
|
15
|
+
Object.defineProperty(exports, "snow_anomaly_detection_exec", { enumerable: true, get: function () { return snow_anomaly_detection_js_1.execute; } });
|
|
16
|
+
var snow_recommendation_engine_js_1 = require("./snow_recommendation_engine.js");
|
|
17
|
+
Object.defineProperty(exports, "snow_recommendation_engine_def", { enumerable: true, get: function () { return snow_recommendation_engine_js_1.toolDefinition; } });
|
|
18
|
+
Object.defineProperty(exports, "snow_recommendation_engine_exec", { enumerable: true, get: function () { return snow_recommendation_engine_js_1.execute; } });
|
|
19
|
+
var snow_autocomplete_js_1 = require("./snow_autocomplete.js");
|
|
20
|
+
Object.defineProperty(exports, "snow_autocomplete_def", { enumerable: true, get: function () { return snow_autocomplete_js_1.toolDefinition; } });
|
|
21
|
+
Object.defineProperty(exports, "snow_autocomplete_exec", { enumerable: true, get: function () { return snow_autocomplete_js_1.execute; } });
|
|
22
|
+
var snow_fuzzy_search_js_1 = require("./snow_fuzzy_search.js");
|
|
23
|
+
Object.defineProperty(exports, "snow_fuzzy_search_def", { enumerable: true, get: function () { return snow_fuzzy_search_js_1.toolDefinition; } });
|
|
24
|
+
Object.defineProperty(exports, "snow_fuzzy_search_exec", { enumerable: true, get: function () { return snow_fuzzy_search_js_1.execute; } });
|
|
25
|
+
var snow_duplicate_detection_js_1 = require("./snow_duplicate_detection.js");
|
|
26
|
+
Object.defineProperty(exports, "snow_duplicate_detection_def", { enumerable: true, get: function () { return snow_duplicate_detection_js_1.toolDefinition; } });
|
|
27
|
+
Object.defineProperty(exports, "snow_duplicate_detection_exec", { enumerable: true, get: function () { return snow_duplicate_detection_js_1.execute; } });
|
|
28
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_ai_classify
|
|
3
|
+
*/
|
|
4
|
+
import { MCPToolDefinition, ServiceNowContext, ToolResult } from '../../shared/types.js';
|
|
5
|
+
export declare const toolDefinition: MCPToolDefinition;
|
|
6
|
+
export declare function execute(args: any, context: ServiceNowContext): Promise<ToolResult>;
|
|
7
|
+
export declare const version = "1.0.0";
|
|
8
|
+
export declare const author = "Snow-Flow SDK Migration";
|
|
9
|
+
//# sourceMappingURL=snow_ai_classify.d.ts.map
|