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,333 @@
1
+ {
2
+ "category": "Fm Checkpoint",
3
+ "version": "v2",
4
+ "description": "",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/fm-checkpoint/{id}",
8
+ "method": "DELETE",
9
+ "operationId": "deleteItem_2",
10
+ "summary": "Delete FM checkpoint item",
11
+ "description": "Deletes the specified FM checkpoint item and all its descendants recursively. Returns 400 if the item is ROOT or CATEGORY (system-fixed). Returns 404 if the ID does not exist.",
12
+ "tags": [
13
+ "FM Checkpoint"
14
+ ],
15
+ "parameters": [
16
+ {
17
+ "name": "id",
18
+ "in": "path",
19
+ "description": "Unique ID of the FM checkpoint item to delete",
20
+ "required": true,
21
+ "schema": {
22
+ "type": "string"
23
+ }
24
+ }
25
+ ],
26
+ "requestBody": null,
27
+ "responses": {
28
+ "default": {
29
+ "description": "default response",
30
+ "content": {
31
+ "application/json": {}
32
+ }
33
+ }
34
+ }
35
+ },
36
+ {
37
+ "path": "/api/v2/fm-checkpoint/tree",
38
+ "method": "GET",
39
+ "operationId": "getTree_1",
40
+ "summary": "Get FM checkpoint tree",
41
+ "description": "Returns the full tree structure of failure mode checkpoint items. Returned as a recursive children structure from ROOT down to ITEM leaf nodes. Used to display the checkpoint tree in the setup page.",
42
+ "tags": [
43
+ "FM Checkpoint"
44
+ ],
45
+ "parameters": [],
46
+ "requestBody": null,
47
+ "responses": {
48
+ "default": {
49
+ "description": "default response",
50
+ "content": {
51
+ "application/json": {
52
+ "schema": {
53
+ "type": "object",
54
+ "properties": {
55
+ "id": {
56
+ "type": "string"
57
+ },
58
+ "title": {
59
+ "type": "string"
60
+ },
61
+ "type": {
62
+ "type": "string",
63
+ "enum": [
64
+ "ROOT",
65
+ "CATEGORY",
66
+ "GROUP",
67
+ "ITEM"
68
+ ]
69
+ },
70
+ "order": {
71
+ "type": "integer"
72
+ },
73
+ "children": {
74
+ "type": "array",
75
+ "items": {
76
+ "type": "object",
77
+ "description": "(circular: FmCheckpointTreeNodeDTO)"
78
+ }
79
+ }
80
+ }
81
+ }
82
+ }
83
+ }
84
+ }
85
+ }
86
+ },
87
+ {
88
+ "path": "/api/v2/fm-checkpoint/{id}",
89
+ "method": "GET",
90
+ "operationId": "getItem_1",
91
+ "summary": "Get FM checkpoint item",
92
+ "description": "Returns the details of a single FM checkpoint item. Returns 404 if the ID does not exist.",
93
+ "tags": [
94
+ "FM Checkpoint"
95
+ ],
96
+ "parameters": [
97
+ {
98
+ "name": "id",
99
+ "in": "path",
100
+ "description": "Unique ID of the FM checkpoint item",
101
+ "required": true,
102
+ "schema": {
103
+ "type": "string"
104
+ }
105
+ }
106
+ ],
107
+ "requestBody": null,
108
+ "responses": {
109
+ "default": {
110
+ "description": "default response",
111
+ "content": {
112
+ "application/json": {
113
+ "schema": {
114
+ "type": "object",
115
+ "properties": {
116
+ "id": {
117
+ "type": "string"
118
+ },
119
+ "parentId": {
120
+ "type": "string"
121
+ },
122
+ "title": {
123
+ "type": "string"
124
+ },
125
+ "description": {
126
+ "type": "string"
127
+ },
128
+ "type": {
129
+ "type": "string",
130
+ "enum": [
131
+ "ROOT",
132
+ "CATEGORY",
133
+ "GROUP",
134
+ "ITEM"
135
+ ]
136
+ },
137
+ "order": {
138
+ "type": "integer"
139
+ }
140
+ }
141
+ }
142
+ }
143
+ }
144
+ }
145
+ }
146
+ },
147
+ {
148
+ "path": "/api/v2/fm-checkpoint/{id}/items",
149
+ "method": "GET",
150
+ "operationId": "getItems_1",
151
+ "summary": "List child FM checkpoint items",
152
+ "description": "Returns the direct child FM checkpoint items of the specified parent. Returns 404 if the parent ID does not exist.",
153
+ "tags": [
154
+ "FM Checkpoint"
155
+ ],
156
+ "parameters": [
157
+ {
158
+ "name": "id",
159
+ "in": "path",
160
+ "description": "Parent FM checkpoint item ID",
161
+ "required": true,
162
+ "schema": {
163
+ "type": "string"
164
+ }
165
+ }
166
+ ],
167
+ "requestBody": null,
168
+ "responses": {
169
+ "default": {
170
+ "description": "default response",
171
+ "content": {
172
+ "application/json": {
173
+ "schema": {
174
+ "type": "array",
175
+ "items": {
176
+ "type": "object",
177
+ "properties": {
178
+ "id": {
179
+ "type": "string"
180
+ },
181
+ "parentId": {
182
+ "type": "string"
183
+ },
184
+ "title": {
185
+ "type": "string"
186
+ },
187
+ "description": {
188
+ "type": "string"
189
+ },
190
+ "type": {
191
+ "type": "string",
192
+ "enum": [
193
+ "ROOT",
194
+ "CATEGORY",
195
+ "GROUP",
196
+ "ITEM"
197
+ ]
198
+ },
199
+ "order": {
200
+ "type": "integer"
201
+ }
202
+ }
203
+ }
204
+ }
205
+ }
206
+ }
207
+ }
208
+ }
209
+ },
210
+ {
211
+ "path": "/api/v2/fm-checkpoint/{parentId}/items",
212
+ "method": "POST",
213
+ "operationId": "createItem_2",
214
+ "summary": "Create FM checkpoint item",
215
+ "description": "Adds a new FM checkpoint item under the specified parent. The child type is automatically determined by the parent's type. Returns 400 if the parent is ROOT (CATEGORY is system-fixed) or ITEM (leaf node), or if the title is blank or duplicated.",
216
+ "tags": [
217
+ "FM Checkpoint"
218
+ ],
219
+ "parameters": [
220
+ {
221
+ "name": "parentId",
222
+ "in": "path",
223
+ "description": "ID of the parent FM checkpoint item",
224
+ "required": true,
225
+ "schema": {
226
+ "type": "string"
227
+ }
228
+ }
229
+ ],
230
+ "requestBody": {
231
+ "content": {
232
+ "application/json": {
233
+ "schema": {
234
+ "type": "object",
235
+ "properties": {
236
+ "title": {
237
+ "type": "string"
238
+ },
239
+ "description": {
240
+ "type": "string"
241
+ }
242
+ }
243
+ }
244
+ }
245
+ }
246
+ },
247
+ "responses": {
248
+ "default": {
249
+ "description": "default response",
250
+ "content": {
251
+ "application/json": {}
252
+ }
253
+ }
254
+ }
255
+ },
256
+ {
257
+ "path": "/api/v2/fm-checkpoint/{id}",
258
+ "method": "PUT",
259
+ "operationId": "updateItem_2",
260
+ "summary": "Update FM checkpoint item",
261
+ "description": "Updates the title and description of the specified FM checkpoint item. Returns 400 if the item is ROOT or CATEGORY (system-fixed), or if the title is blank or duplicated under the same parent.",
262
+ "tags": [
263
+ "FM Checkpoint"
264
+ ],
265
+ "parameters": [
266
+ {
267
+ "name": "id",
268
+ "in": "path",
269
+ "description": "Unique ID of the FM checkpoint item to update",
270
+ "required": true,
271
+ "schema": {
272
+ "type": "string"
273
+ }
274
+ }
275
+ ],
276
+ "requestBody": {
277
+ "content": {
278
+ "application/json": {
279
+ "schema": {
280
+ "type": "object",
281
+ "properties": {
282
+ "title": {
283
+ "type": "string"
284
+ },
285
+ "description": {
286
+ "type": "string"
287
+ }
288
+ }
289
+ }
290
+ }
291
+ }
292
+ },
293
+ "responses": {
294
+ "default": {
295
+ "description": "default response",
296
+ "content": {
297
+ "application/json": {
298
+ "schema": {
299
+ "type": "object",
300
+ "properties": {
301
+ "id": {
302
+ "type": "string"
303
+ },
304
+ "parentId": {
305
+ "type": "string"
306
+ },
307
+ "title": {
308
+ "type": "string"
309
+ },
310
+ "description": {
311
+ "type": "string"
312
+ },
313
+ "type": {
314
+ "type": "string",
315
+ "enum": [
316
+ "ROOT",
317
+ "CATEGORY",
318
+ "GROUP",
319
+ "ITEM"
320
+ ]
321
+ },
322
+ "order": {
323
+ "type": "integer"
324
+ }
325
+ }
326
+ }
327
+ }
328
+ }
329
+ }
330
+ }
331
+ }
332
+ ]
333
+ }
@@ -0,0 +1,109 @@
1
+ {
2
+ "category": "Process Symbols",
3
+ "version": "v2",
4
+ "description": "",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/process-symbols",
8
+ "method": "GET",
9
+ "operationId": "getAll",
10
+ "summary": "List all process symbols",
11
+ "description": "Returns all process flow chart symbols ordered by sortOrder. Used for process flow diagram symbol configuration.",
12
+ "tags": [
13
+ "ProcessSymbol"
14
+ ],
15
+ "parameters": [],
16
+ "requestBody": null,
17
+ "responses": {
18
+ "default": {
19
+ "description": "default response",
20
+ "content": {
21
+ "application/json": {
22
+ "schema": {
23
+ "type": "array",
24
+ "items": {
25
+ "type": "object",
26
+ "properties": {
27
+ "symbol": {
28
+ "type": "string"
29
+ },
30
+ "description": {
31
+ "type": "string"
32
+ },
33
+ "sortOrder": {
34
+ "type": "integer"
35
+ }
36
+ }
37
+ }
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
43
+ },
44
+ {
45
+ "path": "/api/v2/process-symbols",
46
+ "method": "PUT",
47
+ "operationId": "replaceAll",
48
+ "summary": "Replace all process symbols",
49
+ "description": "Replaces all process flow chart symbols with the provided list. Performs a full replace (delete all + insert all) in a single transaction. Returns the saved symbol list.",
50
+ "tags": [
51
+ "ProcessSymbol"
52
+ ],
53
+ "parameters": [],
54
+ "requestBody": {
55
+ "content": {
56
+ "application/json": {
57
+ "schema": {
58
+ "type": "array",
59
+ "items": {
60
+ "required": [
61
+ "symbol"
62
+ ],
63
+ "type": "object",
64
+ "properties": {
65
+ "symbol": {
66
+ "type": "string"
67
+ },
68
+ "description": {
69
+ "type": "string"
70
+ },
71
+ "sortOrder": {
72
+ "type": "integer",
73
+ "format": "int32"
74
+ }
75
+ }
76
+ }
77
+ }
78
+ }
79
+ }
80
+ },
81
+ "responses": {
82
+ "default": {
83
+ "description": "default response",
84
+ "content": {
85
+ "application/json": {
86
+ "schema": {
87
+ "type": "array",
88
+ "items": {
89
+ "type": "object",
90
+ "properties": {
91
+ "symbol": {
92
+ "type": "string"
93
+ },
94
+ "description": {
95
+ "type": "string"
96
+ },
97
+ "sortOrder": {
98
+ "type": "integer"
99
+ }
100
+ }
101
+ }
102
+ }
103
+ }
104
+ }
105
+ }
106
+ }
107
+ }
108
+ ]
109
+ }
@@ -1035,176 +1035,6 @@
1035
1035
  }
1036
1036
  }
1037
1037
  },
1038
- {
1039
- "path": "/api/v2/projects/my/summary",
1040
- "method": "GET",
1041
- "operationId": "getDashboardSummary",
1042
- "summary": "Get my projects dashboard summary",
1043
- "description": "Returns aggregated dashboard summary including action items, status distribution, trends, and meta information for divisions accessible to the current user.",
1044
- "tags": [
1045
- "Project"
1046
- ],
1047
- "parameters": [],
1048
- "requestBody": null,
1049
- "responses": {
1050
- "default": {
1051
- "description": "default response",
1052
- "content": {
1053
- "application/json": {
1054
- "schema": {
1055
- "type": "object",
1056
- "properties": {
1057
- "action": {
1058
- "type": "object",
1059
- "properties": {
1060
- "highRiskNoAction": {
1061
- "type": "integer"
1062
- },
1063
- "criticalSeverityNoAction": {
1064
- "type": "integer"
1065
- },
1066
- "worsenedCount": {
1067
- "type": "integer"
1068
- },
1069
- "overdueProjects": {
1070
- "type": "integer"
1071
- },
1072
- "pendingApprovals": {
1073
- "type": "integer"
1074
- }
1075
- }
1076
- },
1077
- "status": {
1078
- "type": "object",
1079
- "properties": {
1080
- "projectDistribution": {
1081
- "type": "array",
1082
- "items": {
1083
- "type": "object",
1084
- "properties": {
1085
- "label": {
1086
- "type": "string"
1087
- },
1088
- "count": {
1089
- "type": "integer"
1090
- }
1091
- }
1092
- }
1093
- },
1094
- "rpnDistribution": {
1095
- "type": "object",
1096
- "properties": {
1097
- "before": {
1098
- "type": "array",
1099
- "items": {
1100
- "type": "object",
1101
- "properties": {
1102
- "label": {
1103
- "type": "string"
1104
- },
1105
- "count": {
1106
- "type": "integer"
1107
- }
1108
- }
1109
- }
1110
- },
1111
- "after": {
1112
- "type": "array",
1113
- "items": {
1114
- "type": "object",
1115
- "properties": {
1116
- "label": {
1117
- "type": "string"
1118
- },
1119
- "count": {
1120
- "type": "integer"
1121
- }
1122
- }
1123
- }
1124
- }
1125
- }
1126
- },
1127
- "coverage": {
1128
- "type": "object",
1129
- "properties": {
1130
- "totalFailureModes": {
1131
- "type": "integer"
1132
- },
1133
- "totalCauses": {
1134
- "type": "integer"
1135
- },
1136
- "ratedCauses": {
1137
- "type": "integer"
1138
- },
1139
- "coverageRate": {
1140
- "type": "number",
1141
- "format": "double"
1142
- }
1143
- }
1144
- },
1145
- "fmeaTypeDistribution": {
1146
- "type": "array",
1147
- "items": {
1148
- "type": "object",
1149
- "properties": {
1150
- "label": {
1151
- "type": "string"
1152
- },
1153
- "count": {
1154
- "type": "integer"
1155
- }
1156
- }
1157
- }
1158
- },
1159
- "improvementRate": {
1160
- "type": "number",
1161
- "format": "double"
1162
- }
1163
- }
1164
- },
1165
- "trends": {
1166
- "type": "object",
1167
- "properties": {
1168
- "monthlyProjectCreation": {
1169
- "type": "array",
1170
- "items": {
1171
- "type": "object",
1172
- "properties": {
1173
- "label": {
1174
- "type": "string"
1175
- },
1176
- "count": {
1177
- "type": "integer"
1178
- }
1179
- }
1180
- }
1181
- },
1182
- "zombieProjects": {
1183
- "type": "integer"
1184
- }
1185
- }
1186
- },
1187
- "meta": {
1188
- "type": "object",
1189
- "properties": {
1190
- "lastUpdated": {
1191
- "type": "object"
1192
- },
1193
- "warming": {
1194
- "type": "boolean"
1195
- },
1196
- "stale": {
1197
- "type": "boolean"
1198
- }
1199
- }
1200
- }
1201
- }
1202
- }
1203
- }
1204
- }
1205
- }
1206
- }
1207
- },
1208
1038
  {
1209
1039
  "path": "/api/v2/projects/{projectId}",
1210
1040
  "method": "PATCH",