fmea-api-mcp-server 1.1.45 → 1.1.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -28,7 +28,7 @@ class ApiDocsServer {
28
28
  constructor() {
29
29
  this.server = new Server({
30
30
  name: "api-docs-mcp",
31
- version: "1.1.45",
31
+ version: "1.1.46",
32
32
  }, {
33
33
  capabilities: {
34
34
  resources: {},
package/dist/synonyms.js CHANGED
@@ -160,7 +160,7 @@ export const SYNONYM_GROUPS = {
160
160
  "display": ["visibility", "show", "hide", "toggle", "visible"],
161
161
  "default": ["preset", "standard", "baseline", "initial"],
162
162
  "refresh": ["reload", "update", "recalculate", "regenerate", "sync"],
163
- "regenerate": ["refresh", "renew", "rotate", "reissue"], // [R33] Distinguish from "create"
163
+ "regenerate": ["rebuild", "reindex", "refresh", "renew", "rotate", "reissue"], // [R33] [R37] rebuild/reindex first to rank within slice(0,3) limit
164
164
  "snapshot": ["cache", "refresh", "summary", "data snapshot"],
165
165
  // [R28] Classification Domain
166
166
  "classification": ["category", "label", "symbol", "group", "class", "tag"],
@@ -118,16 +118,10 @@
118
118
  "projectPeriod": {
119
119
  "type": "object",
120
120
  "properties": {
121
- "createLimitEnabled": {
122
- "type": "boolean"
123
- },
124
- "createLimitDays": {
121
+ "createMaxDurationDays": {
125
122
  "type": "integer"
126
123
  },
127
- "modifyLimitEnabled": {
128
- "type": "boolean"
129
- },
130
- "modifyLimitDays": {
124
+ "modifyMaxDurationDays": {
131
125
  "type": "integer"
132
126
  }
133
127
  }
@@ -345,17 +339,11 @@
345
339
  "projectPeriod": {
346
340
  "type": "object",
347
341
  "properties": {
348
- "createLimitEnabled": {
349
- "type": "boolean"
350
- },
351
- "createLimitDays": {
342
+ "createMaxDurationDays": {
352
343
  "type": "integer",
353
344
  "format": "int32"
354
345
  },
355
- "modifyLimitEnabled": {
356
- "type": "boolean"
357
- },
358
- "modifyLimitDays": {
346
+ "modifyMaxDurationDays": {
359
347
  "type": "integer",
360
348
  "format": "int32"
361
349
  }
@@ -566,16 +554,233 @@
566
554
  "projectPeriod": {
567
555
  "type": "object",
568
556
  "properties": {
569
- "createLimitEnabled": {
557
+ "createMaxDurationDays": {
558
+ "type": "integer"
559
+ },
560
+ "modifyMaxDurationDays": {
561
+ "type": "integer"
562
+ }
563
+ }
564
+ },
565
+ "fmCheckprint": {
566
+ "type": "object",
567
+ "properties": {
568
+ "enabled": {
569
+ "type": "boolean"
570
+ },
571
+ "designEnabled": {
572
+ "type": "boolean"
573
+ },
574
+ "processEnabled": {
575
+ "type": "boolean"
576
+ },
577
+ "equipmentEnabled": {
578
+ "type": "boolean"
579
+ }
580
+ }
581
+ },
582
+ "fmmDisplay": {
583
+ "type": "object",
584
+ "properties": {
585
+ "showCreationInfo": {
586
+ "type": "boolean"
587
+ },
588
+ "highlightNewFailureModes": {
589
+ "type": "boolean"
590
+ },
591
+ "useBfmmType": {
592
+ "type": "boolean"
593
+ }
594
+ }
595
+ },
596
+ "security": {
597
+ "type": "object",
598
+ "properties": {
599
+ "forcePasswordChangeOnFirstLogin": {
570
600
  "type": "boolean"
571
601
  },
572
- "createLimitDays": {
602
+ "enforcePasswordComplexity": {
603
+ "type": "boolean"
604
+ },
605
+ "restrictCommonSequences": {
606
+ "type": "boolean"
607
+ },
608
+ "preventPasswordReuse": {
609
+ "type": "boolean"
610
+ },
611
+ "enforcePasswordExpiration": {
612
+ "type": "boolean"
613
+ },
614
+ "passwordExpirationDays": {
615
+ "type": "integer"
616
+ },
617
+ "maxLoginFailures": {
573
618
  "type": "integer"
619
+ }
620
+ }
621
+ },
622
+ "mail": {
623
+ "type": "object",
624
+ "properties": {
625
+ "enabled": {
626
+ "type": "boolean"
627
+ },
628
+ "host": {
629
+ "type": "string"
630
+ },
631
+ "port": {
632
+ "type": "string"
574
633
  },
575
- "modifyLimitEnabled": {
634
+ "username": {
635
+ "type": "string"
636
+ },
637
+ "password": {
638
+ "type": "string"
639
+ },
640
+ "senderAddress": {
641
+ "type": "string"
642
+ },
643
+ "rpnThreshold": {
644
+ "type": "integer"
645
+ }
646
+ }
647
+ },
648
+ "serverUrl": {
649
+ "type": "object",
650
+ "properties": {
651
+ "protocol": {
652
+ "type": "string"
653
+ },
654
+ "host": {
655
+ "type": "string"
656
+ }
657
+ }
658
+ },
659
+ "projectManagement": {
660
+ "type": "object",
661
+ "properties": {
662
+ "defaultApprovalOnCompletion": {
663
+ "type": "boolean"
664
+ },
665
+ "restrictEditAfterApproval": {
576
666
  "type": "boolean"
667
+ }
668
+ }
669
+ },
670
+ "validationApproval": {
671
+ "type": "object",
672
+ "properties": {
673
+ "enabled": {
674
+ "type": "boolean"
675
+ },
676
+ "checkEmptyRecommendedAction": {
677
+ "type": "boolean"
678
+ },
679
+ "checkEmptyDetectionAction": {
680
+ "type": "boolean"
681
+ },
682
+ "notifyFollowUpAssignees": {
683
+ "type": "boolean"
684
+ },
685
+ "checkRpnThreshold": {
686
+ "type": "boolean"
687
+ },
688
+ "checkUnresolvedHighItems": {
689
+ "type": "boolean"
690
+ }
691
+ }
692
+ },
693
+ "revisionEditing": {
694
+ "type": "object",
695
+ "properties": {
696
+ "enabled": {
697
+ "type": "boolean"
698
+ },
699
+ "allowRevisionNumberEdit": {
700
+ "type": "boolean"
701
+ },
702
+ "allowRevisionDateEdit": {
703
+ "type": "boolean"
704
+ },
705
+ "allowRevisionReasonEdit": {
706
+ "type": "boolean"
707
+ }
708
+ }
709
+ },
710
+ "reviewer": {
711
+ "type": "object",
712
+ "properties": {
713
+ "checkReviewerEnabled": {
714
+ "type": "boolean"
715
+ }
716
+ }
717
+ },
718
+ "blankText": {
719
+ "type": "object",
720
+ "properties": {
721
+ "texts": {
722
+ "type": "array",
723
+ "items": {
724
+ "type": "string"
725
+ }
726
+ }
727
+ }
728
+ }
729
+ }
730
+ }
731
+ }
732
+ }
733
+ }
734
+ }
735
+ },
736
+ {
737
+ "path": "/api/v2/system/settings/public",
738
+ "method": "GET",
739
+ "operationId": "getPublicSettings",
740
+ "summary": "Get public system settings",
741
+ "description": "Returns system settings visible to all users. Excludes sensitive groups: security, mail, serverUrl.",
742
+ "tags": [
743
+ "System Settings"
744
+ ],
745
+ "parameters": [],
746
+ "requestBody": null,
747
+ "responses": {
748
+ "default": {
749
+ "description": "default response",
750
+ "content": {
751
+ "application/json": {
752
+ "schema": {
753
+ "type": "object",
754
+ "properties": {
755
+ "company": {
756
+ "type": "object",
757
+ "properties": {
758
+ "name": {
759
+ "type": "string"
760
+ }
761
+ }
762
+ },
763
+ "scoring": {
764
+ "type": "object",
765
+ "properties": {
766
+ "enabled": {
767
+ "type": "boolean"
768
+ },
769
+ "threshold": {
770
+ "type": "integer"
771
+ },
772
+ "alwaysEnabled": {
773
+ "type": "boolean"
774
+ }
775
+ }
776
+ },
777
+ "projectPeriod": {
778
+ "type": "object",
779
+ "properties": {
780
+ "createMaxDurationDays": {
781
+ "type": "integer"
577
782
  },
578
- "modifyLimitDays": {
783
+ "modifyMaxDurationDays": {
579
784
  "type": "integer"
580
785
  }
581
786
  }
@@ -270,7 +270,7 @@
270
270
  "method": "POST",
271
271
  "operationId": "rebuild",
272
272
  "summary": "Rebuild tree search index",
273
- "description": "Triggers an asynchronous full rebuild of the Lucene tree search index for the specified domain. Requires ADMIN privileges. Returns 202 if rebuild started, 409 if already in progress.",
273
+ "description": "Triggers an asynchronous full rebuild (reindex) of the Lucene tree search index for the specified domain. Use this to reindex or regenerate the search index data. Requires ADMIN privileges. Returns 202 if rebuild started, 409 if already in progress.",
274
274
  "tags": [
275
275
  "Tree Search"
276
276
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmea-api-mcp-server",
3
- "version": "1.1.45",
3
+ "version": "1.1.46",
4
4
  "description": "MCP server for serving API documentation from endpoints directory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",