snow-flow 4.6.9 → 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mcp.json.template +11 -269
- 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,352 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Tool Registry with Auto-Discovery
|
|
4
|
+
*
|
|
5
|
+
* Automatically discovers and registers tools from the tools/ directory.
|
|
6
|
+
* Supports dynamic loading, validation, and hot-reload during development.
|
|
7
|
+
*/
|
|
8
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9
|
+
if (k2 === undefined) k2 = k;
|
|
10
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
11
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
12
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
13
|
+
}
|
|
14
|
+
Object.defineProperty(o, k2, desc);
|
|
15
|
+
}) : (function(o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
o[k2] = m[k];
|
|
18
|
+
}));
|
|
19
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
20
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
21
|
+
}) : function(o, v) {
|
|
22
|
+
o["default"] = v;
|
|
23
|
+
});
|
|
24
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
25
|
+
var ownKeys = function(o) {
|
|
26
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
27
|
+
var ar = [];
|
|
28
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
29
|
+
return ar;
|
|
30
|
+
};
|
|
31
|
+
return ownKeys(o);
|
|
32
|
+
};
|
|
33
|
+
return function (mod) {
|
|
34
|
+
if (mod && mod.__esModule) return mod;
|
|
35
|
+
var result = {};
|
|
36
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
37
|
+
__setModuleDefault(result, mod);
|
|
38
|
+
return result;
|
|
39
|
+
};
|
|
40
|
+
})();
|
|
41
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42
|
+
exports.toolRegistry = exports.ToolRegistry = void 0;
|
|
43
|
+
const fs = __importStar(require("fs/promises"));
|
|
44
|
+
const path = __importStar(require("path"));
|
|
45
|
+
class ToolRegistry {
|
|
46
|
+
constructor(config = {}) {
|
|
47
|
+
this.tools = new Map();
|
|
48
|
+
this.discoveryInProgress = false;
|
|
49
|
+
this.config = {
|
|
50
|
+
toolsDirectory: path.join(__dirname, '../tools'),
|
|
51
|
+
autoDiscovery: true,
|
|
52
|
+
enableCaching: true,
|
|
53
|
+
cacheMaxAge: 60000, // 1 minute
|
|
54
|
+
validateOnRegister: true,
|
|
55
|
+
...config
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Initialize tool registry with auto-discovery
|
|
60
|
+
*/
|
|
61
|
+
async initialize() {
|
|
62
|
+
console.log('[ToolRegistry] Initializing with auto-discovery...');
|
|
63
|
+
const startTime = Date.now();
|
|
64
|
+
const result = {
|
|
65
|
+
toolsFound: 0,
|
|
66
|
+
toolsRegistered: 0,
|
|
67
|
+
toolsFailed: 0,
|
|
68
|
+
domains: [],
|
|
69
|
+
errors: [],
|
|
70
|
+
duration: 0
|
|
71
|
+
};
|
|
72
|
+
try {
|
|
73
|
+
// Discover all domains (subdirectories in tools/)
|
|
74
|
+
const domains = await this.discoverDomains();
|
|
75
|
+
result.domains = domains;
|
|
76
|
+
console.log(`[ToolRegistry] Found ${domains.length} domains: ${domains.join(', ')}`);
|
|
77
|
+
// Discover and register tools from each domain
|
|
78
|
+
for (const domain of domains) {
|
|
79
|
+
const domainPath = path.join(this.config.toolsDirectory, domain);
|
|
80
|
+
const domainResult = await this.discoverDomainTools(domain, domainPath);
|
|
81
|
+
result.toolsFound += domainResult.toolsFound;
|
|
82
|
+
result.toolsRegistered += domainResult.toolsRegistered;
|
|
83
|
+
result.toolsFailed += domainResult.toolsFailed;
|
|
84
|
+
result.errors.push(...domainResult.errors);
|
|
85
|
+
}
|
|
86
|
+
result.duration = Date.now() - startTime;
|
|
87
|
+
console.log('[ToolRegistry] Discovery complete:');
|
|
88
|
+
console.log(` - Tools found: ${result.toolsFound}`);
|
|
89
|
+
console.log(` - Tools registered: ${result.toolsRegistered}`);
|
|
90
|
+
console.log(` - Tools failed: ${result.toolsFailed}`);
|
|
91
|
+
console.log(` - Duration: ${result.duration}ms`);
|
|
92
|
+
// Export tool definitions to JSON
|
|
93
|
+
if (result.toolsRegistered > 0) {
|
|
94
|
+
await this.exportToolDefinitions();
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
catch (error) {
|
|
98
|
+
console.error('[ToolRegistry] Discovery failed:', error.message);
|
|
99
|
+
throw error;
|
|
100
|
+
}
|
|
101
|
+
return result;
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* Discover all domain directories
|
|
105
|
+
*/
|
|
106
|
+
async discoverDomains() {
|
|
107
|
+
try {
|
|
108
|
+
const entries = await fs.readdir(this.config.toolsDirectory, { withFileTypes: true });
|
|
109
|
+
return entries
|
|
110
|
+
.filter(entry => entry.isDirectory())
|
|
111
|
+
.map(entry => entry.name)
|
|
112
|
+
.filter(name => !name.startsWith('.') && !name.startsWith('_'));
|
|
113
|
+
}
|
|
114
|
+
catch (error) {
|
|
115
|
+
console.error('[ToolRegistry] Failed to discover domains:', error.message);
|
|
116
|
+
return [];
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Discover tools in a specific domain
|
|
121
|
+
*/
|
|
122
|
+
async discoverDomainTools(domain, domainPath) {
|
|
123
|
+
const result = {
|
|
124
|
+
toolsFound: 0,
|
|
125
|
+
toolsRegistered: 0,
|
|
126
|
+
toolsFailed: 0,
|
|
127
|
+
domains: [domain],
|
|
128
|
+
errors: [],
|
|
129
|
+
duration: 0
|
|
130
|
+
};
|
|
131
|
+
try {
|
|
132
|
+
// Read all .js files in domain directory (except index.js)
|
|
133
|
+
// In compiled output, we want .js files, not .ts or .d.ts
|
|
134
|
+
const entries = await fs.readdir(domainPath, { withFileTypes: true });
|
|
135
|
+
const toolFiles = entries
|
|
136
|
+
.filter(entry => entry.isFile() &&
|
|
137
|
+
entry.name.endsWith('.js') &&
|
|
138
|
+
entry.name !== 'index.js' &&
|
|
139
|
+
!entry.name.endsWith('.d.ts') && // Exclude TypeScript declaration files
|
|
140
|
+
!entry.name.endsWith('.js.map') // Exclude source maps
|
|
141
|
+
)
|
|
142
|
+
.map(entry => entry.name);
|
|
143
|
+
result.toolsFound = toolFiles.length;
|
|
144
|
+
// Load each tool file
|
|
145
|
+
for (const toolFile of toolFiles) {
|
|
146
|
+
const toolPath = path.join(domainPath, toolFile);
|
|
147
|
+
try {
|
|
148
|
+
await this.loadAndRegisterTool(domain, toolPath);
|
|
149
|
+
result.toolsRegistered++;
|
|
150
|
+
}
|
|
151
|
+
catch (error) {
|
|
152
|
+
result.toolsFailed++;
|
|
153
|
+
result.errors.push({
|
|
154
|
+
filePath: toolPath,
|
|
155
|
+
error: error.message
|
|
156
|
+
});
|
|
157
|
+
console.error(`[ToolRegistry] Failed to load ${toolPath}:`, error.message);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
catch (error) {
|
|
162
|
+
console.error(`[ToolRegistry] Failed to discover tools in ${domain}:`, error.message);
|
|
163
|
+
}
|
|
164
|
+
return result;
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* Load and register a tool from a file
|
|
168
|
+
*/
|
|
169
|
+
async loadAndRegisterTool(domain, filePath) {
|
|
170
|
+
try {
|
|
171
|
+
// Dynamic import of tool module
|
|
172
|
+
const toolModule = await Promise.resolve(`${filePath}`).then(s => __importStar(require(s)));
|
|
173
|
+
// Validate tool module exports
|
|
174
|
+
if (!toolModule.toolDefinition) {
|
|
175
|
+
throw new Error('Tool module must export "toolDefinition"');
|
|
176
|
+
}
|
|
177
|
+
if (!toolModule.execute) {
|
|
178
|
+
throw new Error('Tool module must export "execute" function');
|
|
179
|
+
}
|
|
180
|
+
const definition = toolModule.toolDefinition;
|
|
181
|
+
const executor = toolModule.execute;
|
|
182
|
+
// Validate tool definition
|
|
183
|
+
if (this.config.validateOnRegister) {
|
|
184
|
+
const validation = this.validateToolDefinition(definition);
|
|
185
|
+
if (!validation.valid) {
|
|
186
|
+
throw new Error(`Validation failed: ${validation.errors.join(', ')}`);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
// Register tool
|
|
190
|
+
const registeredTool = {
|
|
191
|
+
definition,
|
|
192
|
+
executor,
|
|
193
|
+
domain,
|
|
194
|
+
filePath,
|
|
195
|
+
metadata: {
|
|
196
|
+
addedAt: new Date(),
|
|
197
|
+
version: toolModule.version || '1.0.0',
|
|
198
|
+
author: toolModule.author
|
|
199
|
+
}
|
|
200
|
+
};
|
|
201
|
+
this.tools.set(definition.name, registeredTool);
|
|
202
|
+
console.log(`[ToolRegistry] Registered: ${definition.name} (${domain})`);
|
|
203
|
+
}
|
|
204
|
+
catch (error) {
|
|
205
|
+
throw new Error(`Failed to load tool from ${filePath}: ${error.message}`);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* Validate tool definition structure
|
|
210
|
+
*/
|
|
211
|
+
validateToolDefinition(definition) {
|
|
212
|
+
const errors = [];
|
|
213
|
+
const warnings = [];
|
|
214
|
+
// Required fields
|
|
215
|
+
if (!definition.name) {
|
|
216
|
+
errors.push('Tool name is required');
|
|
217
|
+
}
|
|
218
|
+
else if (!/^[a-z_][a-z0-9_]*$/.test(definition.name)) {
|
|
219
|
+
errors.push('Tool name must match pattern: ^[a-z_][a-z0-9_]*$ (snake_case)');
|
|
220
|
+
}
|
|
221
|
+
if (!definition.description) {
|
|
222
|
+
errors.push('Tool description is required');
|
|
223
|
+
}
|
|
224
|
+
else if (definition.description.length < 10) {
|
|
225
|
+
warnings.push('Tool description should be more descriptive (at least 10 characters)');
|
|
226
|
+
}
|
|
227
|
+
if (!definition.inputSchema) {
|
|
228
|
+
errors.push('Tool inputSchema is required');
|
|
229
|
+
}
|
|
230
|
+
else {
|
|
231
|
+
if (definition.inputSchema.type !== 'object') {
|
|
232
|
+
errors.push('Tool inputSchema.type must be "object"');
|
|
233
|
+
}
|
|
234
|
+
if (!definition.inputSchema.properties) {
|
|
235
|
+
warnings.push('Tool should define input properties');
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
// Check for duplicate names
|
|
239
|
+
if (this.tools.has(definition.name)) {
|
|
240
|
+
errors.push(`Tool name "${definition.name}" is already registered`);
|
|
241
|
+
}
|
|
242
|
+
return {
|
|
243
|
+
valid: errors.length === 0,
|
|
244
|
+
errors,
|
|
245
|
+
warnings
|
|
246
|
+
};
|
|
247
|
+
}
|
|
248
|
+
/**
|
|
249
|
+
* Get all registered tool definitions (for MCP server)
|
|
250
|
+
*/
|
|
251
|
+
getToolDefinitions() {
|
|
252
|
+
return Array.from(this.tools.values()).map(tool => tool.definition);
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
* Get registered tool by name
|
|
256
|
+
*/
|
|
257
|
+
getTool(name) {
|
|
258
|
+
return this.tools.get(name);
|
|
259
|
+
}
|
|
260
|
+
/**
|
|
261
|
+
* Execute a tool by name
|
|
262
|
+
*/
|
|
263
|
+
async executeTool(name, args, context) {
|
|
264
|
+
const tool = this.tools.get(name);
|
|
265
|
+
if (!tool) {
|
|
266
|
+
throw new Error(`Tool not found: ${name}`);
|
|
267
|
+
}
|
|
268
|
+
try {
|
|
269
|
+
console.log(`[ToolRegistry] Executing: ${name}`);
|
|
270
|
+
const result = await tool.executor(args, context);
|
|
271
|
+
console.log(`[ToolRegistry] Success: ${name}`);
|
|
272
|
+
return result;
|
|
273
|
+
}
|
|
274
|
+
catch (error) {
|
|
275
|
+
console.error(`[ToolRegistry] Failed: ${name}`, error.message);
|
|
276
|
+
throw error;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* Get tools by domain
|
|
281
|
+
*/
|
|
282
|
+
getToolsByDomain(domain) {
|
|
283
|
+
return Array.from(this.tools.values()).filter(tool => tool.domain === domain);
|
|
284
|
+
}
|
|
285
|
+
/**
|
|
286
|
+
* Get all domains
|
|
287
|
+
*/
|
|
288
|
+
getDomains() {
|
|
289
|
+
const domains = new Set();
|
|
290
|
+
this.tools.forEach(tool => domains.add(tool.domain));
|
|
291
|
+
return Array.from(domains).sort();
|
|
292
|
+
}
|
|
293
|
+
/**
|
|
294
|
+
* Get registry statistics
|
|
295
|
+
*/
|
|
296
|
+
getStatistics() {
|
|
297
|
+
const domains = this.getDomains();
|
|
298
|
+
const stats = {
|
|
299
|
+
totalTools: this.tools.size,
|
|
300
|
+
totalDomains: domains.length,
|
|
301
|
+
toolsByDomain: {}
|
|
302
|
+
};
|
|
303
|
+
domains.forEach(domain => {
|
|
304
|
+
stats.toolsByDomain[domain] = this.getToolsByDomain(domain).length;
|
|
305
|
+
});
|
|
306
|
+
return stats;
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
* Export tool definitions to JSON file
|
|
310
|
+
*/
|
|
311
|
+
async exportToolDefinitions() {
|
|
312
|
+
const configPath = path.join(__dirname, '../config/tool-definitions.json');
|
|
313
|
+
const metadata = [];
|
|
314
|
+
this.tools.forEach((tool, name) => {
|
|
315
|
+
metadata.push({
|
|
316
|
+
name,
|
|
317
|
+
domain: tool.domain,
|
|
318
|
+
description: tool.definition.description,
|
|
319
|
+
version: tool.metadata.version,
|
|
320
|
+
author: tool.metadata.author,
|
|
321
|
+
tags: [tool.domain]
|
|
322
|
+
});
|
|
323
|
+
});
|
|
324
|
+
try {
|
|
325
|
+
await fs.mkdir(path.dirname(configPath), { recursive: true });
|
|
326
|
+
await fs.writeFile(configPath, JSON.stringify(metadata, null, 2), 'utf-8');
|
|
327
|
+
console.log(`[ToolRegistry] Exported ${metadata.length} tool definitions to ${configPath}`);
|
|
328
|
+
}
|
|
329
|
+
catch (error) {
|
|
330
|
+
console.error('[ToolRegistry] Failed to export tool definitions:', error.message);
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
/**
|
|
334
|
+
* Reload tools from disk (for development hot-reload)
|
|
335
|
+
*/
|
|
336
|
+
async reload() {
|
|
337
|
+
console.log('[ToolRegistry] Reloading tools...');
|
|
338
|
+
this.tools.clear();
|
|
339
|
+
return await this.initialize();
|
|
340
|
+
}
|
|
341
|
+
/**
|
|
342
|
+
* Clear all registered tools
|
|
343
|
+
*/
|
|
344
|
+
clear() {
|
|
345
|
+
this.tools.clear();
|
|
346
|
+
console.log('[ToolRegistry] Cleared all registered tools');
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
exports.ToolRegistry = ToolRegistry;
|
|
350
|
+
// Export singleton instance
|
|
351
|
+
exports.toolRegistry = new ToolRegistry();
|
|
352
|
+
//# sourceMappingURL=tool-registry.js.map
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared TypeScript types for Unified MCP Server
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* ServiceNow instance authentication context
|
|
6
|
+
*/
|
|
7
|
+
export interface ServiceNowContext {
|
|
8
|
+
instanceUrl: string;
|
|
9
|
+
clientId: string;
|
|
10
|
+
clientSecret: string;
|
|
11
|
+
refreshToken?: string;
|
|
12
|
+
accessToken?: string;
|
|
13
|
+
tokenExpiry?: number;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* MCP Tool Definition (compliant with Model Context Protocol)
|
|
17
|
+
*/
|
|
18
|
+
export interface MCPToolDefinition {
|
|
19
|
+
name: string;
|
|
20
|
+
description: string;
|
|
21
|
+
inputSchema: {
|
|
22
|
+
type: 'object';
|
|
23
|
+
properties: Record<string, any>;
|
|
24
|
+
required?: string[];
|
|
25
|
+
additionalProperties?: boolean;
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Tool execution function signature
|
|
30
|
+
*/
|
|
31
|
+
export type ToolExecutor = (args: Record<string, any>, context: ServiceNowContext) => Promise<ToolResult>;
|
|
32
|
+
/**
|
|
33
|
+
* Tool result structure
|
|
34
|
+
*/
|
|
35
|
+
export interface ToolResult {
|
|
36
|
+
success: boolean;
|
|
37
|
+
data?: any;
|
|
38
|
+
error?: string;
|
|
39
|
+
metadata?: {
|
|
40
|
+
executionTime?: number;
|
|
41
|
+
apiCalls?: number;
|
|
42
|
+
updateSetId?: string;
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Registered tool (definition + executor)
|
|
48
|
+
*/
|
|
49
|
+
export interface RegisteredTool {
|
|
50
|
+
definition: MCPToolDefinition;
|
|
51
|
+
executor: ToolExecutor;
|
|
52
|
+
domain: string;
|
|
53
|
+
filePath: string;
|
|
54
|
+
metadata: {
|
|
55
|
+
addedAt: Date;
|
|
56
|
+
version: string;
|
|
57
|
+
author?: string;
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Tool registry configuration
|
|
62
|
+
*/
|
|
63
|
+
export interface ToolRegistryConfig {
|
|
64
|
+
toolsDirectory: string;
|
|
65
|
+
autoDiscovery: boolean;
|
|
66
|
+
enableCaching: boolean;
|
|
67
|
+
cacheMaxAge: number;
|
|
68
|
+
validateOnRegister: boolean;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Error handling configuration
|
|
72
|
+
*/
|
|
73
|
+
export interface RetryConfig {
|
|
74
|
+
maxAttempts: number;
|
|
75
|
+
backoff: 'linear' | 'exponential';
|
|
76
|
+
initialDelay: number;
|
|
77
|
+
maxDelay: number;
|
|
78
|
+
retryableErrors: string[];
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* OAuth token response from ServiceNow
|
|
82
|
+
*/
|
|
83
|
+
export interface OAuthTokenResponse {
|
|
84
|
+
access_token: string;
|
|
85
|
+
refresh_token: string;
|
|
86
|
+
token_type: 'Bearer';
|
|
87
|
+
expires_in: number;
|
|
88
|
+
scope: string;
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* ServiceNow API error structure
|
|
92
|
+
*/
|
|
93
|
+
export interface ServiceNowError {
|
|
94
|
+
error: {
|
|
95
|
+
message: string;
|
|
96
|
+
detail: string;
|
|
97
|
+
};
|
|
98
|
+
status: string;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Tool discovery result
|
|
102
|
+
*/
|
|
103
|
+
export interface ToolDiscoveryResult {
|
|
104
|
+
toolsFound: number;
|
|
105
|
+
toolsRegistered: number;
|
|
106
|
+
toolsFailed: number;
|
|
107
|
+
domains: string[];
|
|
108
|
+
errors: Array<{
|
|
109
|
+
filePath: string;
|
|
110
|
+
error: string;
|
|
111
|
+
}>;
|
|
112
|
+
duration: number;
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* Validation result for tool definitions
|
|
116
|
+
*/
|
|
117
|
+
export interface ToolValidationResult {
|
|
118
|
+
valid: boolean;
|
|
119
|
+
errors: string[];
|
|
120
|
+
warnings: string[];
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* Tool metadata (for tool-definitions.json)
|
|
124
|
+
*/
|
|
125
|
+
export interface ToolMetadata {
|
|
126
|
+
name: string;
|
|
127
|
+
domain: string;
|
|
128
|
+
description: string;
|
|
129
|
+
version: string;
|
|
130
|
+
author?: string;
|
|
131
|
+
tags?: string[];
|
|
132
|
+
examples?: Array<{
|
|
133
|
+
description: string;
|
|
134
|
+
input: Record<string, any>;
|
|
135
|
+
expectedOutput?: any;
|
|
136
|
+
}>;
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* Server statistics
|
|
140
|
+
*/
|
|
141
|
+
export interface ServerStats {
|
|
142
|
+
uptime: number;
|
|
143
|
+
totalToolCalls: number;
|
|
144
|
+
successfulCalls: number;
|
|
145
|
+
failedCalls: number;
|
|
146
|
+
averageExecutionTime: number;
|
|
147
|
+
toolUsage: Record<string, number>;
|
|
148
|
+
errorsByType: Record<string, number>;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* Widget coherence validation result (Snow-Flow specific)
|
|
152
|
+
*/
|
|
153
|
+
export interface WidgetCoherenceResult {
|
|
154
|
+
coherent: boolean;
|
|
155
|
+
issues: Array<{
|
|
156
|
+
type: 'missing_data' | 'orphaned_method' | 'action_mismatch' | 'invalid_reference';
|
|
157
|
+
severity: 'critical' | 'warning';
|
|
158
|
+
description: string;
|
|
159
|
+
location?: string;
|
|
160
|
+
fix?: string;
|
|
161
|
+
}>;
|
|
162
|
+
analysis: {
|
|
163
|
+
serverInitializedData: string[];
|
|
164
|
+
clientMethods: string[];
|
|
165
|
+
htmlReferences: string[];
|
|
166
|
+
inputActions: string[];
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* ES5 validation result (Snow-Flow specific)
|
|
171
|
+
*/
|
|
172
|
+
export interface ES5ValidationResult {
|
|
173
|
+
valid: boolean;
|
|
174
|
+
violations: Array<{
|
|
175
|
+
type: 'const' | 'let' | 'arrow_function' | 'template_literal' | 'destructuring' | 'for_of' | 'default_param' | 'class';
|
|
176
|
+
line: number;
|
|
177
|
+
column: number;
|
|
178
|
+
code: string;
|
|
179
|
+
fix: string;
|
|
180
|
+
}>;
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* Update Set context (Snow-Flow specific)
|
|
184
|
+
*/
|
|
185
|
+
export interface UpdateSetContext {
|
|
186
|
+
sys_id: string;
|
|
187
|
+
name: string;
|
|
188
|
+
state: 'in progress' | 'complete' | 'committed';
|
|
189
|
+
description?: string;
|
|
190
|
+
isCurrent: boolean;
|
|
191
|
+
}
|
|
192
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { toolDefinition as snow_create_acl_def, execute as snow_create_acl_exec } from './snow_create_acl.js';
|
|
2
|
+
export { toolDefinition as snow_create_acl_role_def, execute as snow_create_acl_role_exec } from './snow_create_acl_role.js';
|
|
3
|
+
export { toolDefinition as snow_test_acl_def, execute as snow_test_acl_exec } from './snow_test_acl.js';
|
|
4
|
+
export { toolDefinition as snow_get_user_roles_def, execute as snow_get_user_roles_exec } from './snow_get_user_roles.js';
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.snow_get_user_roles_exec = exports.snow_get_user_roles_def = exports.snow_test_acl_exec = exports.snow_test_acl_def = exports.snow_create_acl_role_exec = exports.snow_create_acl_role_def = exports.snow_create_acl_exec = exports.snow_create_acl_def = void 0;
|
|
4
|
+
var snow_create_acl_js_1 = require("./snow_create_acl.js");
|
|
5
|
+
Object.defineProperty(exports, "snow_create_acl_def", { enumerable: true, get: function () { return snow_create_acl_js_1.toolDefinition; } });
|
|
6
|
+
Object.defineProperty(exports, "snow_create_acl_exec", { enumerable: true, get: function () { return snow_create_acl_js_1.execute; } });
|
|
7
|
+
var snow_create_acl_role_js_1 = require("./snow_create_acl_role.js");
|
|
8
|
+
Object.defineProperty(exports, "snow_create_acl_role_def", { enumerable: true, get: function () { return snow_create_acl_role_js_1.toolDefinition; } });
|
|
9
|
+
Object.defineProperty(exports, "snow_create_acl_role_exec", { enumerable: true, get: function () { return snow_create_acl_role_js_1.execute; } });
|
|
10
|
+
var snow_test_acl_js_1 = require("./snow_test_acl.js");
|
|
11
|
+
Object.defineProperty(exports, "snow_test_acl_def", { enumerable: true, get: function () { return snow_test_acl_js_1.toolDefinition; } });
|
|
12
|
+
Object.defineProperty(exports, "snow_test_acl_exec", { enumerable: true, get: function () { return snow_test_acl_js_1.execute; } });
|
|
13
|
+
var snow_get_user_roles_js_1 = require("./snow_get_user_roles.js");
|
|
14
|
+
Object.defineProperty(exports, "snow_get_user_roles_def", { enumerable: true, get: function () { return snow_get_user_roles_js_1.toolDefinition; } });
|
|
15
|
+
Object.defineProperty(exports, "snow_get_user_roles_exec", { enumerable: true, get: function () { return snow_get_user_roles_js_1.execute; } });
|
|
16
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_create_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_create_acl.d.ts.map
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_create_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_create_acl',
|
|
12
|
+
description: 'Create Access Control List rule',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
name: { type: 'string', description: 'ACL name' },
|
|
17
|
+
operation: { type: 'string', enum: ['read', 'write', 'create', 'delete'], description: 'Operation type' },
|
|
18
|
+
type: { type: 'string', description: 'ACL type (record/field)' },
|
|
19
|
+
admin_overrides: { type: 'boolean', default: true },
|
|
20
|
+
active: { type: 'boolean', default: true }
|
|
21
|
+
},
|
|
22
|
+
required: ['name', 'operation']
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
async function execute(args, context) {
|
|
26
|
+
const { name, operation, type, admin_overrides = true, active = true } = args;
|
|
27
|
+
try {
|
|
28
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
29
|
+
const aclData = { name, operation, admin_overrides, active };
|
|
30
|
+
if (type)
|
|
31
|
+
aclData.type = type;
|
|
32
|
+
const response = await client.post('/api/now/table/sys_security_acl', aclData);
|
|
33
|
+
return (0, error_handler_js_1.createSuccessResult)({ created: true, acl: response.data.result });
|
|
34
|
+
}
|
|
35
|
+
catch (error) {
|
|
36
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
exports.version = '1.0.0';
|
|
40
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
41
|
+
//# sourceMappingURL=snow_create_acl.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_create_acl_role
|
|
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_create_acl_role.d.ts.map
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* snow_create_acl_role
|
|
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_create_acl_role',
|
|
12
|
+
description: 'Create ACL role association',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
acl: { type: 'string', description: 'ACL sys_id' },
|
|
17
|
+
role: { type: 'string', description: 'Role sys_id' }
|
|
18
|
+
},
|
|
19
|
+
required: ['acl', 'role']
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
async function execute(args, context) {
|
|
23
|
+
const { acl, role } = args;
|
|
24
|
+
try {
|
|
25
|
+
const client = await (0, auth_js_1.getAuthenticatedClient)(context);
|
|
26
|
+
const aclRoleData = { sys_security_acl: acl, sys_user_role: role };
|
|
27
|
+
const response = await client.post('/api/now/table/sys_security_acl_role', aclRoleData);
|
|
28
|
+
return (0, error_handler_js_1.createSuccessResult)({ created: true, acl_role: response.data.result });
|
|
29
|
+
}
|
|
30
|
+
catch (error) {
|
|
31
|
+
return (0, error_handler_js_1.createErrorResult)(error.message);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
exports.version = '1.0.0';
|
|
35
|
+
exports.author = 'Snow-Flow SDK Migration';
|
|
36
|
+
//# sourceMappingURL=snow_create_acl_role.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* snow_get_user_roles
|
|
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_get_user_roles.d.ts.map
|