snow-flow 2.0.11 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,85 @@
1
+ /**
2
+ * ServiceNow Machine Learning MCP Server
3
+ * Real neural networks and machine learning for ServiceNow operations
4
+ */
5
+ import { ServiceNowCredentials } from '../utils/snow-oauth.js';
6
+ export declare class ServiceNowMachineLearningMCP {
7
+ private server;
8
+ private logger;
9
+ private client;
10
+ private incidentClassifier?;
11
+ private changeRiskPredictor?;
12
+ private incidentVolumePredictor?;
13
+ private anomalyDetector?;
14
+ private modelCache;
15
+ private embeddingCache;
16
+ constructor(credentials?: ServiceNowCredentials);
17
+ private initializeModels;
18
+ private loadOrCreateModels;
19
+ private setupHandlers;
20
+ /**
21
+ * Train incident classification neural network
22
+ */
23
+ private trainIncidentClassifier;
24
+ /**
25
+ * Train change risk prediction model
26
+ */
27
+ private trainChangeRiskModel;
28
+ /**
29
+ * Train anomaly detection autoencoder
30
+ */
31
+ private trainAnomalyDetector;
32
+ /**
33
+ * Classify incident using neural network
34
+ */
35
+ private classifyIncident;
36
+ /**
37
+ * Forecast incident volume using LSTM
38
+ */
39
+ private forecastIncidents;
40
+ /**
41
+ * Get model status and metrics
42
+ */
43
+ private getModelStatus;
44
+ private fetchIncidentData;
45
+ private prepareIncidentData;
46
+ private tokenizeText;
47
+ private getModelSize;
48
+ private generateCategoryRecommendation;
49
+ private generateVolumeRecommendations;
50
+ private loadIncidentClassifier;
51
+ private loadChangeRiskModel;
52
+ private loadTimeSeriesModel;
53
+ private loadAnomalyDetector;
54
+ private fetchChangeData;
55
+ private prepareChangeData;
56
+ private fetchMetricData;
57
+ private fetchIncidentVolumeHistory;
58
+ private prepareTimeSeriesData;
59
+ private fetchSingleIncident;
60
+ private detectAnomalies;
61
+ private predictChangeRisk;
62
+ private evaluateModel;
63
+ /**
64
+ * ServiceNow Native ML Integration Methods
65
+ */
66
+ private performanceAnalytics;
67
+ private predictiveIntelligence;
68
+ private agentIntelligence;
69
+ private processOptimization;
70
+ private virtualAgentNLU;
71
+ private hybridRecommendation;
72
+ private generateHybridRecommendation;
73
+ private makeServiceNowRequest;
74
+ private checkMLAPIAvailability;
75
+ run(): Promise<void>;
76
+ private calculateForecast;
77
+ private calculateTrend;
78
+ private detectSeasonality;
79
+ private calculateVariance;
80
+ private detectAnomaliesInPA;
81
+ private detectChangePoints;
82
+ private extractBreakdownData;
83
+ private generateProcessOptimizations;
84
+ }
85
+ //# sourceMappingURL=servicenow-machine-learning-mcp.d.ts.map