fmea-api-mcp-server 1.1.32 → 1.1.34

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,916 @@
1
+ {
2
+ "category": "Dashboard",
3
+ "version": "v2",
4
+ "description": "",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/dashboard/all",
8
+ "method": "GET",
9
+ "operationId": "getAllDashboard",
10
+ "summary": "Get all projects dashboard",
11
+ "description": "Returns dashboard summary for all projects across all divisions. Requires ADMIN privileges.",
12
+ "tags": [
13
+ "Dashboard"
14
+ ],
15
+ "parameters": [],
16
+ "requestBody": null,
17
+ "responses": {
18
+ "default": {
19
+ "description": "default response",
20
+ "content": {
21
+ "application/json": {
22
+ "schema": {
23
+ "type": "object",
24
+ "properties": {
25
+ "action": {
26
+ "type": "object",
27
+ "properties": {
28
+ "highRiskNoAction": {
29
+ "type": "integer"
30
+ },
31
+ "criticalSeverityNoAction": {
32
+ "type": "integer"
33
+ },
34
+ "worsenedCount": {
35
+ "type": "integer"
36
+ },
37
+ "overdueProjects": {
38
+ "type": "integer"
39
+ },
40
+ "pendingApprovals": {
41
+ "type": "integer"
42
+ }
43
+ }
44
+ },
45
+ "status": {
46
+ "type": "object",
47
+ "properties": {
48
+ "projectDistribution": {
49
+ "type": "array",
50
+ "items": {
51
+ "type": "object",
52
+ "properties": {
53
+ "label": {
54
+ "type": "string"
55
+ },
56
+ "count": {
57
+ "type": "integer"
58
+ }
59
+ }
60
+ }
61
+ },
62
+ "rpnDistribution": {
63
+ "type": "object",
64
+ "properties": {
65
+ "before": {
66
+ "type": "array",
67
+ "items": {
68
+ "type": "object",
69
+ "properties": {
70
+ "label": {
71
+ "type": "string"
72
+ },
73
+ "count": {
74
+ "type": "integer"
75
+ }
76
+ }
77
+ }
78
+ },
79
+ "after": {
80
+ "type": "array",
81
+ "items": {
82
+ "type": "object",
83
+ "properties": {
84
+ "label": {
85
+ "type": "string"
86
+ },
87
+ "count": {
88
+ "type": "integer"
89
+ }
90
+ }
91
+ }
92
+ }
93
+ }
94
+ },
95
+ "coverage": {
96
+ "type": "object",
97
+ "properties": {
98
+ "totalFailureModes": {
99
+ "type": "integer"
100
+ },
101
+ "totalCauses": {
102
+ "type": "integer"
103
+ },
104
+ "ratedCauses": {
105
+ "type": "integer"
106
+ },
107
+ "coverageRate": {
108
+ "type": "number",
109
+ "format": "double"
110
+ }
111
+ }
112
+ },
113
+ "fmeaTypeDistribution": {
114
+ "type": "array",
115
+ "items": {
116
+ "type": "object",
117
+ "properties": {
118
+ "label": {
119
+ "type": "string"
120
+ },
121
+ "count": {
122
+ "type": "integer"
123
+ }
124
+ }
125
+ }
126
+ },
127
+ "improvementRate": {
128
+ "type": "number",
129
+ "format": "double"
130
+ },
131
+ "failureModeAnalysis": {
132
+ "type": "object",
133
+ "properties": {
134
+ "topFailureModes": {
135
+ "type": "array",
136
+ "items": {
137
+ "type": "object",
138
+ "properties": {
139
+ "name": {
140
+ "type": "string"
141
+ },
142
+ "count": {
143
+ "type": "integer"
144
+ },
145
+ "avgRpnBefore": {
146
+ "type": "number",
147
+ "format": "double"
148
+ },
149
+ "avgRpnAfter": {
150
+ "type": "number",
151
+ "format": "double"
152
+ },
153
+ "topCauses": {
154
+ "type": "array",
155
+ "items": {
156
+ "type": "object",
157
+ "properties": {
158
+ "name": {
159
+ "type": "string"
160
+ },
161
+ "count": {
162
+ "type": "integer"
163
+ },
164
+ "avgS": {
165
+ "type": "number",
166
+ "format": "double"
167
+ },
168
+ "avgO": {
169
+ "type": "number",
170
+ "format": "double"
171
+ },
172
+ "avgD": {
173
+ "type": "number",
174
+ "format": "double"
175
+ }
176
+ }
177
+ }
178
+ },
179
+ "topActions": {
180
+ "type": "array",
181
+ "items": {
182
+ "type": "object",
183
+ "properties": {
184
+ "name": {
185
+ "type": "string"
186
+ },
187
+ "count": {
188
+ "type": "integer"
189
+ },
190
+ "avgS": {
191
+ "type": "number",
192
+ "format": "double"
193
+ },
194
+ "avgO": {
195
+ "type": "number",
196
+ "format": "double"
197
+ },
198
+ "avgD": {
199
+ "type": "number",
200
+ "format": "double"
201
+ }
202
+ }
203
+ }
204
+ }
205
+ }
206
+ }
207
+ },
208
+ "severityDistribution": {
209
+ "type": "array",
210
+ "items": {
211
+ "type": "object",
212
+ "properties": {
213
+ "label": {
214
+ "type": "string"
215
+ },
216
+ "count": {
217
+ "type": "integer"
218
+ }
219
+ }
220
+ }
221
+ },
222
+ "topUnactionedCauses": {
223
+ "type": "array",
224
+ "items": {
225
+ "type": "object",
226
+ "properties": {
227
+ "causeName": {
228
+ "type": "string"
229
+ },
230
+ "failureModeName": {
231
+ "type": "string"
232
+ },
233
+ "rpn": {
234
+ "type": "integer"
235
+ },
236
+ "severity": {
237
+ "type": "integer"
238
+ },
239
+ "occurrence": {
240
+ "type": "integer"
241
+ },
242
+ "detection": {
243
+ "type": "integer"
244
+ }
245
+ }
246
+ }
247
+ },
248
+ "classificationDistribution": {
249
+ "type": "array",
250
+ "items": {
251
+ "type": "object",
252
+ "properties": {
253
+ "label": {
254
+ "type": "string"
255
+ },
256
+ "count": {
257
+ "type": "integer"
258
+ }
259
+ }
260
+ }
261
+ }
262
+ }
263
+ }
264
+ }
265
+ },
266
+ "trends": {
267
+ "type": "object",
268
+ "properties": {
269
+ "monthlyProjectCreation": {
270
+ "type": "array",
271
+ "items": {
272
+ "type": "object",
273
+ "properties": {
274
+ "label": {
275
+ "type": "string"
276
+ },
277
+ "count": {
278
+ "type": "integer"
279
+ }
280
+ }
281
+ }
282
+ },
283
+ "zombieProjects": {
284
+ "type": "integer"
285
+ }
286
+ }
287
+ },
288
+ "meta": {
289
+ "type": "object",
290
+ "properties": {
291
+ "lastUpdated": {
292
+ "type": "object"
293
+ },
294
+ "warming": {
295
+ "type": "boolean"
296
+ },
297
+ "stale": {
298
+ "type": "boolean"
299
+ }
300
+ }
301
+ }
302
+ }
303
+ }
304
+ }
305
+ }
306
+ }
307
+ }
308
+ },
309
+ {
310
+ "path": "/api/v2/dashboard/division",
311
+ "method": "GET",
312
+ "operationId": "getDivisionDashboard",
313
+ "summary": "Get division dashboard",
314
+ "description": "Returns dashboard summary for the current user's division and accessible divisions.",
315
+ "tags": [
316
+ "Dashboard"
317
+ ],
318
+ "parameters": [],
319
+ "requestBody": null,
320
+ "responses": {
321
+ "default": {
322
+ "description": "default response",
323
+ "content": {
324
+ "application/json": {
325
+ "schema": {
326
+ "type": "object",
327
+ "properties": {
328
+ "action": {
329
+ "type": "object",
330
+ "properties": {
331
+ "highRiskNoAction": {
332
+ "type": "integer"
333
+ },
334
+ "criticalSeverityNoAction": {
335
+ "type": "integer"
336
+ },
337
+ "worsenedCount": {
338
+ "type": "integer"
339
+ },
340
+ "overdueProjects": {
341
+ "type": "integer"
342
+ },
343
+ "pendingApprovals": {
344
+ "type": "integer"
345
+ }
346
+ }
347
+ },
348
+ "status": {
349
+ "type": "object",
350
+ "properties": {
351
+ "projectDistribution": {
352
+ "type": "array",
353
+ "items": {
354
+ "type": "object",
355
+ "properties": {
356
+ "label": {
357
+ "type": "string"
358
+ },
359
+ "count": {
360
+ "type": "integer"
361
+ }
362
+ }
363
+ }
364
+ },
365
+ "rpnDistribution": {
366
+ "type": "object",
367
+ "properties": {
368
+ "before": {
369
+ "type": "array",
370
+ "items": {
371
+ "type": "object",
372
+ "properties": {
373
+ "label": {
374
+ "type": "string"
375
+ },
376
+ "count": {
377
+ "type": "integer"
378
+ }
379
+ }
380
+ }
381
+ },
382
+ "after": {
383
+ "type": "array",
384
+ "items": {
385
+ "type": "object",
386
+ "properties": {
387
+ "label": {
388
+ "type": "string"
389
+ },
390
+ "count": {
391
+ "type": "integer"
392
+ }
393
+ }
394
+ }
395
+ }
396
+ }
397
+ },
398
+ "coverage": {
399
+ "type": "object",
400
+ "properties": {
401
+ "totalFailureModes": {
402
+ "type": "integer"
403
+ },
404
+ "totalCauses": {
405
+ "type": "integer"
406
+ },
407
+ "ratedCauses": {
408
+ "type": "integer"
409
+ },
410
+ "coverageRate": {
411
+ "type": "number",
412
+ "format": "double"
413
+ }
414
+ }
415
+ },
416
+ "fmeaTypeDistribution": {
417
+ "type": "array",
418
+ "items": {
419
+ "type": "object",
420
+ "properties": {
421
+ "label": {
422
+ "type": "string"
423
+ },
424
+ "count": {
425
+ "type": "integer"
426
+ }
427
+ }
428
+ }
429
+ },
430
+ "improvementRate": {
431
+ "type": "number",
432
+ "format": "double"
433
+ },
434
+ "failureModeAnalysis": {
435
+ "type": "object",
436
+ "properties": {
437
+ "topFailureModes": {
438
+ "type": "array",
439
+ "items": {
440
+ "type": "object",
441
+ "properties": {
442
+ "name": {
443
+ "type": "string"
444
+ },
445
+ "count": {
446
+ "type": "integer"
447
+ },
448
+ "avgRpnBefore": {
449
+ "type": "number",
450
+ "format": "double"
451
+ },
452
+ "avgRpnAfter": {
453
+ "type": "number",
454
+ "format": "double"
455
+ },
456
+ "topCauses": {
457
+ "type": "array",
458
+ "items": {
459
+ "type": "object",
460
+ "properties": {
461
+ "name": {
462
+ "type": "string"
463
+ },
464
+ "count": {
465
+ "type": "integer"
466
+ },
467
+ "avgS": {
468
+ "type": "number",
469
+ "format": "double"
470
+ },
471
+ "avgO": {
472
+ "type": "number",
473
+ "format": "double"
474
+ },
475
+ "avgD": {
476
+ "type": "number",
477
+ "format": "double"
478
+ }
479
+ }
480
+ }
481
+ },
482
+ "topActions": {
483
+ "type": "array",
484
+ "items": {
485
+ "type": "object",
486
+ "properties": {
487
+ "name": {
488
+ "type": "string"
489
+ },
490
+ "count": {
491
+ "type": "integer"
492
+ },
493
+ "avgS": {
494
+ "type": "number",
495
+ "format": "double"
496
+ },
497
+ "avgO": {
498
+ "type": "number",
499
+ "format": "double"
500
+ },
501
+ "avgD": {
502
+ "type": "number",
503
+ "format": "double"
504
+ }
505
+ }
506
+ }
507
+ }
508
+ }
509
+ }
510
+ },
511
+ "severityDistribution": {
512
+ "type": "array",
513
+ "items": {
514
+ "type": "object",
515
+ "properties": {
516
+ "label": {
517
+ "type": "string"
518
+ },
519
+ "count": {
520
+ "type": "integer"
521
+ }
522
+ }
523
+ }
524
+ },
525
+ "topUnactionedCauses": {
526
+ "type": "array",
527
+ "items": {
528
+ "type": "object",
529
+ "properties": {
530
+ "causeName": {
531
+ "type": "string"
532
+ },
533
+ "failureModeName": {
534
+ "type": "string"
535
+ },
536
+ "rpn": {
537
+ "type": "integer"
538
+ },
539
+ "severity": {
540
+ "type": "integer"
541
+ },
542
+ "occurrence": {
543
+ "type": "integer"
544
+ },
545
+ "detection": {
546
+ "type": "integer"
547
+ }
548
+ }
549
+ }
550
+ },
551
+ "classificationDistribution": {
552
+ "type": "array",
553
+ "items": {
554
+ "type": "object",
555
+ "properties": {
556
+ "label": {
557
+ "type": "string"
558
+ },
559
+ "count": {
560
+ "type": "integer"
561
+ }
562
+ }
563
+ }
564
+ }
565
+ }
566
+ }
567
+ }
568
+ },
569
+ "trends": {
570
+ "type": "object",
571
+ "properties": {
572
+ "monthlyProjectCreation": {
573
+ "type": "array",
574
+ "items": {
575
+ "type": "object",
576
+ "properties": {
577
+ "label": {
578
+ "type": "string"
579
+ },
580
+ "count": {
581
+ "type": "integer"
582
+ }
583
+ }
584
+ }
585
+ },
586
+ "zombieProjects": {
587
+ "type": "integer"
588
+ }
589
+ }
590
+ },
591
+ "meta": {
592
+ "type": "object",
593
+ "properties": {
594
+ "lastUpdated": {
595
+ "type": "object"
596
+ },
597
+ "warming": {
598
+ "type": "boolean"
599
+ },
600
+ "stale": {
601
+ "type": "boolean"
602
+ }
603
+ }
604
+ }
605
+ }
606
+ }
607
+ }
608
+ }
609
+ }
610
+ }
611
+ },
612
+ {
613
+ "path": "/api/v2/dashboard/my",
614
+ "method": "GET",
615
+ "operationId": "getMyDashboard",
616
+ "summary": "Get my projects dashboard",
617
+ "description": "Returns dashboard summary for projects the current user participates in. ADMIN users automatically see all projects.",
618
+ "tags": [
619
+ "Dashboard"
620
+ ],
621
+ "parameters": [],
622
+ "requestBody": null,
623
+ "responses": {
624
+ "default": {
625
+ "description": "default response",
626
+ "content": {
627
+ "application/json": {
628
+ "schema": {
629
+ "type": "object",
630
+ "properties": {
631
+ "action": {
632
+ "type": "object",
633
+ "properties": {
634
+ "highRiskNoAction": {
635
+ "type": "integer"
636
+ },
637
+ "criticalSeverityNoAction": {
638
+ "type": "integer"
639
+ },
640
+ "worsenedCount": {
641
+ "type": "integer"
642
+ },
643
+ "overdueProjects": {
644
+ "type": "integer"
645
+ },
646
+ "pendingApprovals": {
647
+ "type": "integer"
648
+ }
649
+ }
650
+ },
651
+ "status": {
652
+ "type": "object",
653
+ "properties": {
654
+ "projectDistribution": {
655
+ "type": "array",
656
+ "items": {
657
+ "type": "object",
658
+ "properties": {
659
+ "label": {
660
+ "type": "string"
661
+ },
662
+ "count": {
663
+ "type": "integer"
664
+ }
665
+ }
666
+ }
667
+ },
668
+ "rpnDistribution": {
669
+ "type": "object",
670
+ "properties": {
671
+ "before": {
672
+ "type": "array",
673
+ "items": {
674
+ "type": "object",
675
+ "properties": {
676
+ "label": {
677
+ "type": "string"
678
+ },
679
+ "count": {
680
+ "type": "integer"
681
+ }
682
+ }
683
+ }
684
+ },
685
+ "after": {
686
+ "type": "array",
687
+ "items": {
688
+ "type": "object",
689
+ "properties": {
690
+ "label": {
691
+ "type": "string"
692
+ },
693
+ "count": {
694
+ "type": "integer"
695
+ }
696
+ }
697
+ }
698
+ }
699
+ }
700
+ },
701
+ "coverage": {
702
+ "type": "object",
703
+ "properties": {
704
+ "totalFailureModes": {
705
+ "type": "integer"
706
+ },
707
+ "totalCauses": {
708
+ "type": "integer"
709
+ },
710
+ "ratedCauses": {
711
+ "type": "integer"
712
+ },
713
+ "coverageRate": {
714
+ "type": "number",
715
+ "format": "double"
716
+ }
717
+ }
718
+ },
719
+ "fmeaTypeDistribution": {
720
+ "type": "array",
721
+ "items": {
722
+ "type": "object",
723
+ "properties": {
724
+ "label": {
725
+ "type": "string"
726
+ },
727
+ "count": {
728
+ "type": "integer"
729
+ }
730
+ }
731
+ }
732
+ },
733
+ "improvementRate": {
734
+ "type": "number",
735
+ "format": "double"
736
+ },
737
+ "failureModeAnalysis": {
738
+ "type": "object",
739
+ "properties": {
740
+ "topFailureModes": {
741
+ "type": "array",
742
+ "items": {
743
+ "type": "object",
744
+ "properties": {
745
+ "name": {
746
+ "type": "string"
747
+ },
748
+ "count": {
749
+ "type": "integer"
750
+ },
751
+ "avgRpnBefore": {
752
+ "type": "number",
753
+ "format": "double"
754
+ },
755
+ "avgRpnAfter": {
756
+ "type": "number",
757
+ "format": "double"
758
+ },
759
+ "topCauses": {
760
+ "type": "array",
761
+ "items": {
762
+ "type": "object",
763
+ "properties": {
764
+ "name": {
765
+ "type": "string"
766
+ },
767
+ "count": {
768
+ "type": "integer"
769
+ },
770
+ "avgS": {
771
+ "type": "number",
772
+ "format": "double"
773
+ },
774
+ "avgO": {
775
+ "type": "number",
776
+ "format": "double"
777
+ },
778
+ "avgD": {
779
+ "type": "number",
780
+ "format": "double"
781
+ }
782
+ }
783
+ }
784
+ },
785
+ "topActions": {
786
+ "type": "array",
787
+ "items": {
788
+ "type": "object",
789
+ "properties": {
790
+ "name": {
791
+ "type": "string"
792
+ },
793
+ "count": {
794
+ "type": "integer"
795
+ },
796
+ "avgS": {
797
+ "type": "number",
798
+ "format": "double"
799
+ },
800
+ "avgO": {
801
+ "type": "number",
802
+ "format": "double"
803
+ },
804
+ "avgD": {
805
+ "type": "number",
806
+ "format": "double"
807
+ }
808
+ }
809
+ }
810
+ }
811
+ }
812
+ }
813
+ },
814
+ "severityDistribution": {
815
+ "type": "array",
816
+ "items": {
817
+ "type": "object",
818
+ "properties": {
819
+ "label": {
820
+ "type": "string"
821
+ },
822
+ "count": {
823
+ "type": "integer"
824
+ }
825
+ }
826
+ }
827
+ },
828
+ "topUnactionedCauses": {
829
+ "type": "array",
830
+ "items": {
831
+ "type": "object",
832
+ "properties": {
833
+ "causeName": {
834
+ "type": "string"
835
+ },
836
+ "failureModeName": {
837
+ "type": "string"
838
+ },
839
+ "rpn": {
840
+ "type": "integer"
841
+ },
842
+ "severity": {
843
+ "type": "integer"
844
+ },
845
+ "occurrence": {
846
+ "type": "integer"
847
+ },
848
+ "detection": {
849
+ "type": "integer"
850
+ }
851
+ }
852
+ }
853
+ },
854
+ "classificationDistribution": {
855
+ "type": "array",
856
+ "items": {
857
+ "type": "object",
858
+ "properties": {
859
+ "label": {
860
+ "type": "string"
861
+ },
862
+ "count": {
863
+ "type": "integer"
864
+ }
865
+ }
866
+ }
867
+ }
868
+ }
869
+ }
870
+ }
871
+ },
872
+ "trends": {
873
+ "type": "object",
874
+ "properties": {
875
+ "monthlyProjectCreation": {
876
+ "type": "array",
877
+ "items": {
878
+ "type": "object",
879
+ "properties": {
880
+ "label": {
881
+ "type": "string"
882
+ },
883
+ "count": {
884
+ "type": "integer"
885
+ }
886
+ }
887
+ }
888
+ },
889
+ "zombieProjects": {
890
+ "type": "integer"
891
+ }
892
+ }
893
+ },
894
+ "meta": {
895
+ "type": "object",
896
+ "properties": {
897
+ "lastUpdated": {
898
+ "type": "object"
899
+ },
900
+ "warming": {
901
+ "type": "boolean"
902
+ },
903
+ "stale": {
904
+ "type": "boolean"
905
+ }
906
+ }
907
+ }
908
+ }
909
+ }
910
+ }
911
+ }
912
+ }
913
+ }
914
+ }
915
+ ]
916
+ }