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
|
@@ -117,11 +117,11 @@ class PerformanceTracker extends events_1.EventEmitter {
|
|
|
117
117
|
* Get metrics for a specific session
|
|
118
118
|
*/
|
|
119
119
|
async getSessionMetrics(sessionId) {
|
|
120
|
-
const metrics = await this.memory.query(`
|
|
121
|
-
SELECT * FROM performance_metrics
|
|
122
|
-
WHERE session_id =
|
|
120
|
+
const metrics = await this.memory.query?.(`
|
|
121
|
+
SELECT * FROM performance_metrics
|
|
122
|
+
WHERE session_id = '${sessionId}'
|
|
123
123
|
ORDER BY start_time
|
|
124
|
-
|
|
124
|
+
`) || [];
|
|
125
125
|
if (metrics.length === 0) {
|
|
126
126
|
return {
|
|
127
127
|
sessionId,
|
|
@@ -160,11 +160,11 @@ class PerformanceTracker extends events_1.EventEmitter {
|
|
|
160
160
|
*/
|
|
161
161
|
async getAggregateMetrics(operation, timeframe) {
|
|
162
162
|
const since = timeframe ? Date.now() - timeframe : 0;
|
|
163
|
-
const metrics = await this.memory.query(`
|
|
164
|
-
SELECT * FROM performance_metrics
|
|
165
|
-
WHERE operation =
|
|
163
|
+
const metrics = await this.memory.query?.(`
|
|
164
|
+
SELECT * FROM performance_metrics
|
|
165
|
+
WHERE operation = '${operation}' AND start_time > ${since}
|
|
166
166
|
ORDER BY duration
|
|
167
|
-
|
|
167
|
+
`) || [];
|
|
168
168
|
if (metrics.length === 0) {
|
|
169
169
|
return {
|
|
170
170
|
operation,
|
|
@@ -206,10 +206,10 @@ class PerformanceTracker extends events_1.EventEmitter {
|
|
|
206
206
|
const timeframe = this.getTimeframe(period);
|
|
207
207
|
const since = Date.now() - timeframe;
|
|
208
208
|
// Get all metrics for the period
|
|
209
|
-
const allMetrics = await this.memory.query(`
|
|
210
|
-
SELECT * FROM performance_metrics
|
|
211
|
-
WHERE start_time >
|
|
212
|
-
|
|
209
|
+
const allMetrics = await this.memory.query?.(`
|
|
210
|
+
SELECT * FROM performance_metrics
|
|
211
|
+
WHERE start_time > ${since}
|
|
212
|
+
`) || [];
|
|
213
213
|
// Get unique operations
|
|
214
214
|
const operations = [...new Set(allMetrics.map(m => m.operation))];
|
|
215
215
|
// Calculate operation metrics
|
|
@@ -415,10 +415,11 @@ class PerformanceTracker extends events_1.EventEmitter {
|
|
|
415
415
|
}
|
|
416
416
|
async aggregateMetrics() {
|
|
417
417
|
// Aggregate metrics for different time periods
|
|
418
|
-
const
|
|
418
|
+
const cutoff = Date.now() - this.config.aggregationInterval;
|
|
419
|
+
const operations = await this.memory.query?.(`
|
|
419
420
|
SELECT DISTINCT operation FROM performance_metrics
|
|
420
|
-
WHERE start_time >
|
|
421
|
-
|
|
421
|
+
WHERE start_time > ${cutoff}
|
|
422
|
+
`) || [];
|
|
422
423
|
for (const { operation } of operations) {
|
|
423
424
|
const aggregate = await this.getAggregateMetrics(operation, this.config.aggregationInterval);
|
|
424
425
|
await this.memory.insert('performance_aggregates', {
|
|
@@ -434,12 +435,12 @@ class PerformanceTracker extends events_1.EventEmitter {
|
|
|
434
435
|
}
|
|
435
436
|
async cleanupOldMetrics() {
|
|
436
437
|
const cutoff = Date.now() - this.config.metricsRetention;
|
|
437
|
-
await this.memory.execute(`
|
|
438
|
-
DELETE FROM performance_metrics WHERE start_time <
|
|
439
|
-
|
|
440
|
-
await this.memory.execute(`
|
|
441
|
-
DELETE FROM performance_aggregates WHERE timestamp <
|
|
442
|
-
|
|
438
|
+
await this.memory.execute?.(`
|
|
439
|
+
DELETE FROM performance_metrics WHERE start_time < ${cutoff}
|
|
440
|
+
`);
|
|
441
|
+
await this.memory.execute?.(`
|
|
442
|
+
DELETE FROM performance_aggregates WHERE timestamp < ${cutoff}
|
|
443
|
+
`);
|
|
443
444
|
}
|
|
444
445
|
checkPerformanceThresholds(metric) {
|
|
445
446
|
// Check for slow operations
|
|
@@ -508,10 +509,10 @@ class PerformanceTracker extends events_1.EventEmitter {
|
|
|
508
509
|
return peak;
|
|
509
510
|
}
|
|
510
511
|
async countSessionArtifacts(sessionId) {
|
|
511
|
-
const result = await this.memory.query(`
|
|
512
|
-
SELECT COUNT(*) as count FROM servicenow_artifacts
|
|
513
|
-
WHERE session_id =
|
|
514
|
-
|
|
512
|
+
const result = await this.memory.query?.(`
|
|
513
|
+
SELECT COUNT(*) as count FROM servicenow_artifacts
|
|
514
|
+
WHERE session_id = '${sessionId}'
|
|
515
|
+
`) || [];
|
|
515
516
|
return result[0]?.count || 0;
|
|
516
517
|
}
|
|
517
518
|
groupBy(array, key) {
|
|
@@ -267,6 +267,9 @@ class AgentFactory {
|
|
|
267
267
|
portal_page: complexity > 0.7
|
|
268
268
|
? ['researcher', 'widget-creator', 'page-designer', 'tester']
|
|
269
269
|
: ['widget-creator', 'page-designer', 'tester'],
|
|
270
|
+
workspace: complexity > 0.7
|
|
271
|
+
? ['researcher', 'workspace-specialist', 'ui-builder-expert', 'tester']
|
|
272
|
+
: ['workspace-specialist', 'ui-builder-expert'],
|
|
270
273
|
unknown: ['researcher', 'widget-creator'] // Safe default
|
|
271
274
|
};
|
|
272
275
|
return sequences[taskType] || ['researcher'];
|
|
@@ -447,6 +450,27 @@ class AgentFactory {
|
|
|
447
450
|
'NAVIGATION INTEGRATION: Ensure clear navigation paths and consistent user experience',
|
|
448
451
|
'CROSS-BROWSER TESTING: Validate consistent experience across all browsers and device types',
|
|
449
452
|
'USABILITY VALIDATION: Test with real users to ensure the page meets their needs effectively'
|
|
453
|
+
],
|
|
454
|
+
'workspace-specialist': (instr) => [
|
|
455
|
+
'WORKSPACE REQUIREMENTS: Analyze workspace needs and user workflows',
|
|
456
|
+
'UX FRAMEWORK DESIGN: Plan Now Experience Framework architecture',
|
|
457
|
+
'COMPONENT DESIGN: Design workspace components and data integration',
|
|
458
|
+
'IMPLEMENTATION: Create workspace using appropriate MCP tools',
|
|
459
|
+
'VALIDATION: Test workspace functionality and user experience'
|
|
460
|
+
],
|
|
461
|
+
'ui-builder-expert': (instr) => [
|
|
462
|
+
'UI BUILDER ANALYSIS: Determine required UI Builder components',
|
|
463
|
+
'PAGE DESIGN: Design page layout and component structure',
|
|
464
|
+
'DATA INTEGRATION: Configure data brokers and connections',
|
|
465
|
+
'IMPLEMENTATION: Create UI Builder pages with proper configuration',
|
|
466
|
+
'TESTING: Validate functionality and user experience'
|
|
467
|
+
],
|
|
468
|
+
'deployment-specialist': (instr) => [
|
|
469
|
+
'DEPLOYMENT PLANNING: Analyze artifacts and plan deployment',
|
|
470
|
+
'DEPENDENCY CHECK: Verify all prerequisites and dependencies',
|
|
471
|
+
'DEPLOYMENT EXECUTION: Execute deployment using MCP tools',
|
|
472
|
+
'VALIDATION: Test deployed artifacts thoroughly',
|
|
473
|
+
'MONITORING: Ensure deployment success and establish monitoring'
|
|
450
474
|
]
|
|
451
475
|
};
|
|
452
476
|
return plans[agentType]?.(instruction) || [
|
|
@@ -136,6 +136,9 @@ class NeuralLearning {
|
|
|
136
136
|
portal_page: complexity > 0.7
|
|
137
137
|
? ['researcher', 'widget-creator', 'page-designer', 'tester']
|
|
138
138
|
: ['widget-creator', 'page-designer', 'tester'],
|
|
139
|
+
workspace: complexity > 0.7
|
|
140
|
+
? ['researcher', 'workspace-specialist', 'ui-builder-expert', 'tester']
|
|
141
|
+
: ['workspace-specialist', 'ui-builder-expert'],
|
|
139
142
|
unknown: ['researcher', 'widget-creator'] // Default fallback
|
|
140
143
|
};
|
|
141
144
|
// Add catalog manager if catalog-related
|
|
@@ -200,6 +203,7 @@ class NeuralLearning {
|
|
|
200
203
|
application: ['snow_deploy', 'snow_create_table', 'snow_create_ui_policy'],
|
|
201
204
|
integration: ['snow_create_rest_message', 'snow_test_integration'],
|
|
202
205
|
portal_page: ['snow_deploy', 'snow_preview_widget', 'snow_widget_test'],
|
|
206
|
+
workspace: ['snow_create_complete_workspace', 'snow_create_ux_app_route', 'snow_create_uib_page'],
|
|
203
207
|
unknown: ['snow_find_artifact', 'snow_analyze_requirements']
|
|
204
208
|
};
|
|
205
209
|
return mcpSequences[taskType];
|
package/dist/queen/types.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
export interface ServiceNowTask {
|
|
6
6
|
id: string;
|
|
7
7
|
objective: string;
|
|
8
|
-
type: 'widget' | 'portal_page' | 'flow' | 'script' | 'application' | 'integration' | 'unknown';
|
|
8
|
+
type: 'widget' | 'portal_page' | 'flow' | 'script' | 'application' | 'integration' | 'workspace' | 'unknown';
|
|
9
9
|
artifacts: string[];
|
|
10
10
|
status: 'analyzing' | 'planning' | 'executing' | 'completed' | 'failed';
|
|
11
11
|
result?: any;
|
|
@@ -22,7 +22,7 @@ export interface Agent {
|
|
|
22
22
|
specialization?: string;
|
|
23
23
|
startTime?: number;
|
|
24
24
|
}
|
|
25
|
-
export type AgentType = 'widget-creator' | 'flow-builder' | 'script-writer' | 'app-architect' | 'integration-specialist' | 'catalog-manager' | 'researcher' | 'tester' | 'ui-ux-specialist' | 'approval-specialist' | 'security-specialist' | 'css-specialist' | 'backend-specialist' | 'frontend-specialist' | 'performance-specialist' | 'page-designer';
|
|
25
|
+
export type AgentType = 'widget-creator' | 'flow-builder' | 'script-writer' | 'app-architect' | 'integration-specialist' | 'catalog-manager' | 'researcher' | 'tester' | 'ui-ux-specialist' | 'approval-specialist' | 'security-specialist' | 'css-specialist' | 'backend-specialist' | 'frontend-specialist' | 'performance-specialist' | 'page-designer' | 'workspace-specialist' | 'ui-builder-expert' | 'deployment-specialist';
|
|
26
26
|
export interface DeploymentPattern {
|
|
27
27
|
taskType: string;
|
|
28
28
|
successRate: number;
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Claude Agent SDK Integration Layer
|
|
3
|
+
* Bridges Snow-Flow architecture with @anthropic-ai/claude-agent-sdk@0.1.1
|
|
4
|
+
*
|
|
5
|
+
* Purpose:
|
|
6
|
+
* - Replace custom RealAgentSpawner with SDK's native agent spawning
|
|
7
|
+
* - Integrate SDK's query() with our Memory System
|
|
8
|
+
* - Provide hooks for agent coordination
|
|
9
|
+
* - Simplify agent execution while keeping our intelligence
|
|
10
|
+
*/
|
|
11
|
+
import { MemorySystem } from '../memory/memory-system.js';
|
|
12
|
+
import { EventEmitter } from 'events';
|
|
13
|
+
import type { AgentType } from '../queen/types.js';
|
|
14
|
+
export interface SnowFlowAgentConfig {
|
|
15
|
+
type: AgentType;
|
|
16
|
+
objective: string;
|
|
17
|
+
context?: Record<string, any>;
|
|
18
|
+
mcpTools?: string[];
|
|
19
|
+
memory?: MemorySystem;
|
|
20
|
+
maxTurns?: number;
|
|
21
|
+
model?: 'sonnet' | 'opus' | 'haiku';
|
|
22
|
+
}
|
|
23
|
+
export interface AgentExecutionResult {
|
|
24
|
+
success: boolean;
|
|
25
|
+
agentId: string;
|
|
26
|
+
agentType: AgentType;
|
|
27
|
+
artifacts: string[];
|
|
28
|
+
output: string;
|
|
29
|
+
tokensUsed: {
|
|
30
|
+
input: number;
|
|
31
|
+
output: number;
|
|
32
|
+
total: number;
|
|
33
|
+
};
|
|
34
|
+
duration: number;
|
|
35
|
+
error?: Error;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Snow-Flow SDK Integration
|
|
39
|
+
* Replaces 2800+ lines of custom agent code with SDK-native approach
|
|
40
|
+
*/
|
|
41
|
+
export declare class ClaudeAgentSDKIntegration extends EventEmitter {
|
|
42
|
+
private memory;
|
|
43
|
+
private logger;
|
|
44
|
+
private activeQueries;
|
|
45
|
+
constructor(memory: MemorySystem);
|
|
46
|
+
/**
|
|
47
|
+
* Spawn agent using Claude Agent SDK (replaces RealAgentSpawner)
|
|
48
|
+
*
|
|
49
|
+
* Before: 701 lines in RealAgentSpawner
|
|
50
|
+
* After: Single query() call with proper instructions
|
|
51
|
+
*/
|
|
52
|
+
spawnAgent(config: SnowFlowAgentConfig): Promise<AgentExecutionResult>;
|
|
53
|
+
/**
|
|
54
|
+
* Spawn multiple agents in parallel
|
|
55
|
+
* Leverages our ParallelAgentEngine intelligence + SDK execution
|
|
56
|
+
*/
|
|
57
|
+
spawnParallelAgents(configs: SnowFlowAgentConfig[]): Promise<AgentExecutionResult[]>;
|
|
58
|
+
/**
|
|
59
|
+
* Build agent instructions with Snow-Flow intelligence
|
|
60
|
+
* Maps agent types to clear, actionable instructions
|
|
61
|
+
*/
|
|
62
|
+
private buildAgentInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* Type-specific instructions for different agent types
|
|
65
|
+
*/
|
|
66
|
+
private getTypeSpecificInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* Build MCP server configuration for SDK
|
|
69
|
+
* Connects to our 448-tool unified server
|
|
70
|
+
*/
|
|
71
|
+
private buildMCPServerConfig;
|
|
72
|
+
/**
|
|
73
|
+
* Build hooks for agent coordination
|
|
74
|
+
* Integrates with our Memory System and progress tracking
|
|
75
|
+
*/
|
|
76
|
+
private buildHooks;
|
|
77
|
+
/**
|
|
78
|
+
* Process agent execution stream
|
|
79
|
+
* Extracts artifacts, tokens, and output
|
|
80
|
+
*/
|
|
81
|
+
private processAgentExecution;
|
|
82
|
+
/**
|
|
83
|
+
* Control running agent (interrupt, change model, etc.)
|
|
84
|
+
*/
|
|
85
|
+
controlAgent(agentId: string, action: 'interrupt' | 'pause'): Promise<void>;
|
|
86
|
+
/**
|
|
87
|
+
* Get agent status
|
|
88
|
+
*/
|
|
89
|
+
getAgentStatus(agentId: string): 'active' | 'completed' | 'not-found';
|
|
90
|
+
/**
|
|
91
|
+
* Utility methods
|
|
92
|
+
*/
|
|
93
|
+
private generateAgentId;
|
|
94
|
+
private mapModelName;
|
|
95
|
+
/**
|
|
96
|
+
* Cleanup
|
|
97
|
+
*/
|
|
98
|
+
shutdown(): Promise<void>;
|
|
99
|
+
}
|
|
100
|
+
//# sourceMappingURL=claude-agent-sdk-integration.d.ts.map
|
|
@@ -0,0 +1,414 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Claude Agent SDK Integration Layer
|
|
4
|
+
* Bridges Snow-Flow architecture with @anthropic-ai/claude-agent-sdk@0.1.1
|
|
5
|
+
*
|
|
6
|
+
* Purpose:
|
|
7
|
+
* - Replace custom RealAgentSpawner with SDK's native agent spawning
|
|
8
|
+
* - Integrate SDK's query() with our Memory System
|
|
9
|
+
* - Provide hooks for agent coordination
|
|
10
|
+
* - Simplify agent execution while keeping our intelligence
|
|
11
|
+
*/
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
exports.ClaudeAgentSDKIntegration = void 0;
|
|
14
|
+
const claude_agent_sdk_1 = require("@anthropic-ai/claude-agent-sdk");
|
|
15
|
+
const logger_js_1 = require("../utils/logger.js");
|
|
16
|
+
const events_1 = require("events");
|
|
17
|
+
/**
|
|
18
|
+
* Snow-Flow SDK Integration
|
|
19
|
+
* Replaces 2800+ lines of custom agent code with SDK-native approach
|
|
20
|
+
*/
|
|
21
|
+
class ClaudeAgentSDKIntegration extends events_1.EventEmitter {
|
|
22
|
+
constructor(memory) {
|
|
23
|
+
super();
|
|
24
|
+
this.activeQueries = new Map();
|
|
25
|
+
this.memory = memory;
|
|
26
|
+
this.logger = new logger_js_1.Logger('ClaudeAgentSDK');
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Spawn agent using Claude Agent SDK (replaces RealAgentSpawner)
|
|
30
|
+
*
|
|
31
|
+
* Before: 701 lines in RealAgentSpawner
|
|
32
|
+
* After: Single query() call with proper instructions
|
|
33
|
+
*/
|
|
34
|
+
async spawnAgent(config) {
|
|
35
|
+
const agentId = this.generateAgentId(config.type);
|
|
36
|
+
const startTime = Date.now();
|
|
37
|
+
this.logger.info(`🚀 Spawning ${config.type} agent via Claude Agent SDK`);
|
|
38
|
+
this.emit('agent:spawning', { agentId, type: config.type });
|
|
39
|
+
try {
|
|
40
|
+
// Build agent instructions with Snow-Flow context
|
|
41
|
+
const instructions = this.buildAgentInstructions(config);
|
|
42
|
+
// Configure SDK options with MCP servers and hooks
|
|
43
|
+
const options = {
|
|
44
|
+
mcpServers: this.buildMCPServerConfig(),
|
|
45
|
+
hooks: this.buildHooks(agentId, config.type),
|
|
46
|
+
maxTurns: config.maxTurns || 10,
|
|
47
|
+
model: this.mapModelName(config.model),
|
|
48
|
+
permissionMode: 'bypassPermissions', // For automated agents
|
|
49
|
+
cwd: process.cwd()
|
|
50
|
+
};
|
|
51
|
+
// Execute agent via SDK query()
|
|
52
|
+
const agentQuery = (0, claude_agent_sdk_1.query)({
|
|
53
|
+
prompt: instructions,
|
|
54
|
+
options
|
|
55
|
+
});
|
|
56
|
+
// Store active query for monitoring/control
|
|
57
|
+
this.activeQueries.set(agentId, agentQuery);
|
|
58
|
+
// Process agent execution
|
|
59
|
+
const result = await this.processAgentExecution(agentId, config.type, agentQuery, startTime);
|
|
60
|
+
this.emit('agent:completed', result);
|
|
61
|
+
return result;
|
|
62
|
+
}
|
|
63
|
+
catch (error) {
|
|
64
|
+
this.logger.error(`❌ Agent ${agentId} failed:`, error);
|
|
65
|
+
this.emit('agent:failed', { agentId, type: config.type, error });
|
|
66
|
+
return {
|
|
67
|
+
success: false,
|
|
68
|
+
agentId,
|
|
69
|
+
agentType: config.type,
|
|
70
|
+
artifacts: [],
|
|
71
|
+
output: '',
|
|
72
|
+
tokensUsed: { input: 0, output: 0, total: 0 },
|
|
73
|
+
duration: Date.now() - startTime,
|
|
74
|
+
error: error
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
finally {
|
|
78
|
+
this.activeQueries.delete(agentId);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Spawn multiple agents in parallel
|
|
83
|
+
* Leverages our ParallelAgentEngine intelligence + SDK execution
|
|
84
|
+
*/
|
|
85
|
+
async spawnParallelAgents(configs) {
|
|
86
|
+
this.logger.info(`🚀 Spawning ${configs.length} agents in parallel`);
|
|
87
|
+
const spawnPromises = configs.map(config => this.spawnAgent(config));
|
|
88
|
+
const results = await Promise.allSettled(spawnPromises);
|
|
89
|
+
return results.map((result, index) => {
|
|
90
|
+
if (result.status === 'fulfilled') {
|
|
91
|
+
return result.value;
|
|
92
|
+
}
|
|
93
|
+
else {
|
|
94
|
+
const config = configs[index];
|
|
95
|
+
return {
|
|
96
|
+
success: false,
|
|
97
|
+
agentId: this.generateAgentId(config.type),
|
|
98
|
+
agentType: config.type,
|
|
99
|
+
artifacts: [],
|
|
100
|
+
output: '',
|
|
101
|
+
tokensUsed: { input: 0, output: 0, total: 0 },
|
|
102
|
+
duration: 0,
|
|
103
|
+
error: result.reason
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Build agent instructions with Snow-Flow intelligence
|
|
110
|
+
* Maps agent types to clear, actionable instructions
|
|
111
|
+
*/
|
|
112
|
+
buildAgentInstructions(config) {
|
|
113
|
+
const baseInstructions = `You are a ${config.type} agent in the Snow-Flow intelligent orchestration system.
|
|
114
|
+
|
|
115
|
+
**Agent ID:** ${this.generateAgentId(config.type)}
|
|
116
|
+
**Objective:** ${config.objective}
|
|
117
|
+
**Available MCP Tools:** All 448 ServiceNow unified tools are available
|
|
118
|
+
|
|
119
|
+
## 🎯 Mission
|
|
120
|
+
|
|
121
|
+
${this.getTypeSpecificInstructions(config.type)}
|
|
122
|
+
|
|
123
|
+
## 📋 Execution Requirements
|
|
124
|
+
|
|
125
|
+
1. **Use REAL Snow-Flow MCP tools:**
|
|
126
|
+
- All tools are prefixed with 'snow_' (e.g., snow_create_workspace, snow_create_uib_page)
|
|
127
|
+
- Execute tools with proper parameters
|
|
128
|
+
- Capture sys_ids from responses
|
|
129
|
+
|
|
130
|
+
2. **Store results in Memory:**
|
|
131
|
+
- Use mcp__claude-flow__memory_usage for coordination
|
|
132
|
+
- Store all created artifacts: \`memory_usage({ action: 'store', key: 'agent_work_${this.generateAgentId(config.type)}', value: JSON.stringify({ sys_ids: [...] }) })\`
|
|
133
|
+
- Share findings with other agents through Memory
|
|
134
|
+
|
|
135
|
+
3. **Verify your work:**
|
|
136
|
+
- After creating artifacts, verify they exist in ServiceNow
|
|
137
|
+
- Use snow_query_table to confirm records exist
|
|
138
|
+
- Report only verified work
|
|
139
|
+
|
|
140
|
+
4. **Track Update Set:**
|
|
141
|
+
- Ensure active Update Set: snow_ensure_active_update_set
|
|
142
|
+
- All changes should be tracked
|
|
143
|
+
|
|
144
|
+
## ⚠️ Critical Rules
|
|
145
|
+
|
|
146
|
+
- ❌ NO simulation or fake responses
|
|
147
|
+
- ❌ NO placeholder sys_ids
|
|
148
|
+
- ✅ ONLY report verified ServiceNow artifacts
|
|
149
|
+
- ✅ USE Memory for agent coordination
|
|
150
|
+
- ✅ VERIFY all work via snow_query_table
|
|
151
|
+
|
|
152
|
+
## 🚀 Begin Execution
|
|
153
|
+
|
|
154
|
+
${config.context ? `\n**Context:**\n${JSON.stringify(config.context, null, 2)}\n` : ''}
|
|
155
|
+
|
|
156
|
+
Execute your mission now. Use TodoWrite to break down tasks if needed.`;
|
|
157
|
+
return baseInstructions;
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* Type-specific instructions for different agent types
|
|
161
|
+
*/
|
|
162
|
+
getTypeSpecificInstructions(type) {
|
|
163
|
+
const instructions = {
|
|
164
|
+
'workspace-specialist': `Create and configure ServiceNow workspaces using:
|
|
165
|
+
- snow_create_complete_workspace for full UX Framework workspaces
|
|
166
|
+
- snow_create_configurable_agent_workspace for Agent Workspaces
|
|
167
|
+
- snow_discover_all_workspaces to check existing workspaces
|
|
168
|
+
- snow_validate_workspace_configuration to ensure proper setup`,
|
|
169
|
+
'ui-builder-expert': `Build UI Builder pages and components using:
|
|
170
|
+
- snow_create_uib_page for new pages
|
|
171
|
+
- snow_add_uib_page_element to add components
|
|
172
|
+
- snow_create_uib_component for custom components
|
|
173
|
+
- snow_create_uib_data_broker for data integration
|
|
174
|
+
- Ensure proper routing and data flow`,
|
|
175
|
+
'widget-creator': `Create Service Portal widgets using:
|
|
176
|
+
- snow_create_sp_widget for new widgets
|
|
177
|
+
- Ensure HTML/Client/Server script coherence
|
|
178
|
+
- Use snow_pull_artifact for debugging large widgets
|
|
179
|
+
- Validate with snow_validate_artifact_coherence`,
|
|
180
|
+
'script-writer': `Write and deploy scripts using:
|
|
181
|
+
- snow_create_script_include for reusable code
|
|
182
|
+
- snow_create_business_rule for automation
|
|
183
|
+
- snow_create_client_script for client-side logic
|
|
184
|
+
- Ensure ES5 compatibility (NO modern JavaScript!)
|
|
185
|
+
- Test with snow_execute_script_with_output`,
|
|
186
|
+
'integration-specialist': `Build integrations using:
|
|
187
|
+
- snow_create_rest_message for REST APIs
|
|
188
|
+
- snow_test_rest_connection for validation
|
|
189
|
+
- snow_create_transform_map for data transformation
|
|
190
|
+
- Handle authentication and error cases`,
|
|
191
|
+
'tester': `Test and validate implementations using:
|
|
192
|
+
- snow_execute_script_with_output for functionality tests
|
|
193
|
+
- snow_get_logs for error checking
|
|
194
|
+
- snow_validate_artifact_coherence for widget testing
|
|
195
|
+
- Create comprehensive test scenarios`,
|
|
196
|
+
'security-specialist': `Ensure security and compliance using:
|
|
197
|
+
- snow_create_acl for access control
|
|
198
|
+
- snow_scan_vulnerabilities for security checks
|
|
199
|
+
- Review permissions and authentication
|
|
200
|
+
- Validate data access patterns`,
|
|
201
|
+
'deployment-specialist': `Deploy and validate artifacts using:
|
|
202
|
+
- snow_deploy for widget/artifact deployment
|
|
203
|
+
- snow_ensure_active_update_set for change tracking
|
|
204
|
+
- snow_validate_deployment for verification
|
|
205
|
+
- Handle rollback if needed`,
|
|
206
|
+
'researcher': `Research and analyze ServiceNow environments using:
|
|
207
|
+
- snow_comprehensive_search for artifact discovery
|
|
208
|
+
- snow_discover_* tools for exploring configurations
|
|
209
|
+
- snow_query_table for data analysis
|
|
210
|
+
- Document findings in Memory`,
|
|
211
|
+
'app-architect': `Design application architecture using:
|
|
212
|
+
- Analyze requirements and design data models
|
|
213
|
+
- Plan UI/UX structure
|
|
214
|
+
- Define integration points
|
|
215
|
+
- Document architecture in Memory for other agents`,
|
|
216
|
+
'page-designer': `Design and create portal pages using:
|
|
217
|
+
- snow_create_sp_page for Service Portal pages
|
|
218
|
+
- Configure layout (containers, rows, columns)
|
|
219
|
+
- Place widgets with proper sizing
|
|
220
|
+
- Set permissions and navigation`
|
|
221
|
+
};
|
|
222
|
+
return instructions[type] || `Execute your specialized task: ${type}`;
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* Build MCP server configuration for SDK
|
|
226
|
+
* Connects to our 448-tool unified server
|
|
227
|
+
*/
|
|
228
|
+
buildMCPServerConfig() {
|
|
229
|
+
return {
|
|
230
|
+
'servicenow-unified': {
|
|
231
|
+
type: 'stdio',
|
|
232
|
+
command: 'node',
|
|
233
|
+
args: [
|
|
234
|
+
'dist/mcp/servicenow-mcp-unified/index.js'
|
|
235
|
+
],
|
|
236
|
+
env: process.env
|
|
237
|
+
},
|
|
238
|
+
'claude-flow': {
|
|
239
|
+
type: 'stdio',
|
|
240
|
+
command: 'npx',
|
|
241
|
+
args: ['claude-flow@alpha', 'mcp', 'start'],
|
|
242
|
+
env: process.env
|
|
243
|
+
}
|
|
244
|
+
};
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* Build hooks for agent coordination
|
|
248
|
+
* Integrates with our Memory System and progress tracking
|
|
249
|
+
*/
|
|
250
|
+
buildHooks(agentId, agentType) {
|
|
251
|
+
return {
|
|
252
|
+
PostToolUse: [{
|
|
253
|
+
hooks: [async (input, toolUseId, { signal }) => {
|
|
254
|
+
// Type guard for PostToolUseHookInput
|
|
255
|
+
if (input.hook_event_name !== 'PostToolUse') {
|
|
256
|
+
return { continue: true };
|
|
257
|
+
}
|
|
258
|
+
// Store tool execution in Memory for coordination
|
|
259
|
+
if (input.tool_name.startsWith('snow_')) {
|
|
260
|
+
await this.memory.store(`agent_tool_${agentId}_${toolUseId}`, {
|
|
261
|
+
agentId,
|
|
262
|
+
agentType,
|
|
263
|
+
toolName: input.tool_name,
|
|
264
|
+
toolInput: input.tool_input,
|
|
265
|
+
toolResponse: input.tool_response,
|
|
266
|
+
timestamp: new Date().toISOString()
|
|
267
|
+
});
|
|
268
|
+
this.emit('agent:tool-used', {
|
|
269
|
+
agentId,
|
|
270
|
+
agentType,
|
|
271
|
+
toolName: input.tool_name
|
|
272
|
+
});
|
|
273
|
+
}
|
|
274
|
+
return { continue: true };
|
|
275
|
+
}]
|
|
276
|
+
}],
|
|
277
|
+
SessionEnd: [{
|
|
278
|
+
hooks: [async (input, toolUseId, { signal }) => {
|
|
279
|
+
// Type guard for SessionEndHookInput
|
|
280
|
+
if (input.hook_event_name !== 'SessionEnd') {
|
|
281
|
+
return { continue: true };
|
|
282
|
+
}
|
|
283
|
+
// Store final session results
|
|
284
|
+
await this.memory.store(`agent_session_${agentId}`, {
|
|
285
|
+
agentId,
|
|
286
|
+
agentType,
|
|
287
|
+
reason: input.reason,
|
|
288
|
+
timestamp: new Date().toISOString()
|
|
289
|
+
});
|
|
290
|
+
this.logger.info(`✅ Agent ${agentId} session ended: ${input.reason}`);
|
|
291
|
+
return { continue: true };
|
|
292
|
+
}]
|
|
293
|
+
}]
|
|
294
|
+
};
|
|
295
|
+
}
|
|
296
|
+
/**
|
|
297
|
+
* Process agent execution stream
|
|
298
|
+
* Extracts artifacts, tokens, and output
|
|
299
|
+
*/
|
|
300
|
+
async processAgentExecution(agentId, agentType, agentQuery, startTime) {
|
|
301
|
+
const artifacts = [];
|
|
302
|
+
let output = '';
|
|
303
|
+
let tokensUsed = { input: 0, output: 0, total: 0 };
|
|
304
|
+
try {
|
|
305
|
+
// Stream agent messages
|
|
306
|
+
for await (const message of agentQuery) {
|
|
307
|
+
this.emit('agent:message', { agentId, message });
|
|
308
|
+
// Extract results from completion
|
|
309
|
+
if (message.type === 'result' && message.subtype === 'success') {
|
|
310
|
+
output = message.result;
|
|
311
|
+
tokensUsed = {
|
|
312
|
+
input: message.usage.input_tokens,
|
|
313
|
+
output: message.usage.output_tokens,
|
|
314
|
+
total: message.usage.input_tokens + message.usage.output_tokens
|
|
315
|
+
};
|
|
316
|
+
}
|
|
317
|
+
// Extract artifacts from tool responses
|
|
318
|
+
if (message.type === 'assistant') {
|
|
319
|
+
const content = message.message.content;
|
|
320
|
+
for (const block of content) {
|
|
321
|
+
if (block.type === 'tool_use') {
|
|
322
|
+
// Look for sys_ids in tool results
|
|
323
|
+
const sysIdMatch = JSON.stringify(block).match(/[a-f0-9]{32}/g);
|
|
324
|
+
if (sysIdMatch) {
|
|
325
|
+
artifacts.push(...sysIdMatch);
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
// Store final results in Memory
|
|
332
|
+
await this.memory.store(`agent_result_${agentId}`, {
|
|
333
|
+
agentId,
|
|
334
|
+
agentType,
|
|
335
|
+
success: true,
|
|
336
|
+
artifacts: [...new Set(artifacts)], // Remove duplicates
|
|
337
|
+
output,
|
|
338
|
+
tokensUsed,
|
|
339
|
+
duration: Date.now() - startTime
|
|
340
|
+
});
|
|
341
|
+
return {
|
|
342
|
+
success: true,
|
|
343
|
+
agentId,
|
|
344
|
+
agentType,
|
|
345
|
+
artifacts: [...new Set(artifacts)],
|
|
346
|
+
output,
|
|
347
|
+
tokensUsed,
|
|
348
|
+
duration: Date.now() - startTime
|
|
349
|
+
};
|
|
350
|
+
}
|
|
351
|
+
catch (error) {
|
|
352
|
+
throw error;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
/**
|
|
356
|
+
* Control running agent (interrupt, change model, etc.)
|
|
357
|
+
*/
|
|
358
|
+
async controlAgent(agentId, action) {
|
|
359
|
+
const query = this.activeQueries.get(agentId);
|
|
360
|
+
if (!query) {
|
|
361
|
+
throw new Error(`Agent ${agentId} not found or already completed`);
|
|
362
|
+
}
|
|
363
|
+
if (action === 'interrupt') {
|
|
364
|
+
await query.interrupt();
|
|
365
|
+
this.logger.info(`⏸️ Agent ${agentId} interrupted`);
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
/**
|
|
369
|
+
* Get agent status
|
|
370
|
+
*/
|
|
371
|
+
getAgentStatus(agentId) {
|
|
372
|
+
if (this.activeQueries.has(agentId)) {
|
|
373
|
+
return 'active';
|
|
374
|
+
}
|
|
375
|
+
// Check Memory for completed agents
|
|
376
|
+
const result = this.memory.get(`agent_result_${agentId}`);
|
|
377
|
+
return result ? 'completed' : 'not-found';
|
|
378
|
+
}
|
|
379
|
+
/**
|
|
380
|
+
* Utility methods
|
|
381
|
+
*/
|
|
382
|
+
generateAgentId(type) {
|
|
383
|
+
return `sdk_${type}_${Date.now()}_${Math.random().toString(36).substr(2, 9)}`;
|
|
384
|
+
}
|
|
385
|
+
mapModelName(model) {
|
|
386
|
+
if (!model)
|
|
387
|
+
return undefined;
|
|
388
|
+
const modelMap = {
|
|
389
|
+
'sonnet': 'claude-3-5-sonnet-20241022',
|
|
390
|
+
'opus': 'claude-3-opus-20240229',
|
|
391
|
+
'haiku': 'claude-3-5-haiku-20241022'
|
|
392
|
+
};
|
|
393
|
+
return modelMap[model];
|
|
394
|
+
}
|
|
395
|
+
/**
|
|
396
|
+
* Cleanup
|
|
397
|
+
*/
|
|
398
|
+
async shutdown() {
|
|
399
|
+
// Interrupt all active agents
|
|
400
|
+
for (const [agentId, query] of this.activeQueries.entries()) {
|
|
401
|
+
try {
|
|
402
|
+
await query.interrupt();
|
|
403
|
+
this.logger.info(`⏹️ Interrupted agent ${agentId}`);
|
|
404
|
+
}
|
|
405
|
+
catch (error) {
|
|
406
|
+
this.logger.error(`Failed to interrupt agent ${agentId}:`, error);
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
this.activeQueries.clear();
|
|
410
|
+
this.removeAllListeners();
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
exports.ClaudeAgentSDKIntegration = ClaudeAgentSDKIntegration;
|
|
414
|
+
//# sourceMappingURL=claude-agent-sdk-integration.js.map
|