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,419 @@
1
+ {
2
+ "category": "Scoring",
3
+ "version": "v2",
4
+ "description": "",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/scoring/criteria/{id}",
8
+ "method": "DELETE",
9
+ "operationId": "deleteItem_3",
10
+ "summary": "Delete scoring criteria item",
11
+ "description": "Deletes a scoring criteria item and all its descendants recursively. Returns 404 if the item does not exist.",
12
+ "tags": [
13
+ "Scoring Criteria"
14
+ ],
15
+ "parameters": [
16
+ {
17
+ "name": "id",
18
+ "in": "path",
19
+ "description": "Unique ID of the scoring criteria 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/scoring/criteria/tree",
38
+ "method": "GET",
39
+ "operationId": "getTree_2",
40
+ "summary": "Get scoring criteria tree",
41
+ "description": "Returns the full scoring criteria tree from root to leaf values. Includes scorePercent for s_Part nodes. Used to display the complete criteria hierarchy for completeness evaluation.",
42
+ "tags": [
43
+ "Scoring Criteria"
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
+ "SCORING_TYPE",
65
+ "S_PART",
66
+ "S_SCORING",
67
+ "S_VALUE"
68
+ ]
69
+ },
70
+ "score": {
71
+ "type": "integer"
72
+ },
73
+ "scorePercent": {
74
+ "type": "integer"
75
+ },
76
+ "children": {
77
+ "type": "array",
78
+ "items": {
79
+ "type": "object",
80
+ "description": "(circular: ScoringCriteriaTreeNodeDTO)"
81
+ }
82
+ }
83
+ }
84
+ }
85
+ }
86
+ }
87
+ }
88
+ }
89
+ },
90
+ {
91
+ "path": "/api/v2/scoring/criteria/{id}",
92
+ "method": "GET",
93
+ "operationId": "getItem_2",
94
+ "summary": "Get scoring criteria item",
95
+ "description": "Returns a single scoring criteria item by ID. Returns 404 if the item does not exist.",
96
+ "tags": [
97
+ "Scoring Criteria"
98
+ ],
99
+ "parameters": [
100
+ {
101
+ "name": "id",
102
+ "in": "path",
103
+ "description": "Unique ID of the scoring criteria item",
104
+ "required": true,
105
+ "schema": {
106
+ "type": "string"
107
+ }
108
+ }
109
+ ],
110
+ "requestBody": null,
111
+ "responses": {
112
+ "default": {
113
+ "description": "default response",
114
+ "content": {
115
+ "application/json": {
116
+ "schema": {
117
+ "type": "object",
118
+ "properties": {
119
+ "id": {
120
+ "type": "string"
121
+ },
122
+ "title": {
123
+ "type": "string"
124
+ },
125
+ "description": {
126
+ "type": "string"
127
+ },
128
+ "type": {
129
+ "type": "string",
130
+ "enum": [
131
+ "SCORING_TYPE",
132
+ "S_PART",
133
+ "S_SCORING",
134
+ "S_VALUE"
135
+ ]
136
+ },
137
+ "depth": {
138
+ "type": "integer"
139
+ },
140
+ "score": {
141
+ "type": "integer"
142
+ },
143
+ "scorePercent": {
144
+ "type": "integer"
145
+ }
146
+ }
147
+ }
148
+ }
149
+ }
150
+ }
151
+ }
152
+ },
153
+ {
154
+ "path": "/api/v2/scoring/criteria/{id}/breadcrumb",
155
+ "method": "GET",
156
+ "operationId": "getBreadcrumb",
157
+ "summary": "Get breadcrumb path for scoring criteria item",
158
+ "description": "Returns the breadcrumb path from root to the specified item. Useful for navigation to show where an item sits in the hierarchy.",
159
+ "tags": [
160
+ "Scoring Criteria"
161
+ ],
162
+ "parameters": [
163
+ {
164
+ "name": "id",
165
+ "in": "path",
166
+ "description": "ID of the scoring criteria item to get the breadcrumb path for",
167
+ "required": true,
168
+ "schema": {
169
+ "type": "string"
170
+ }
171
+ }
172
+ ],
173
+ "requestBody": null,
174
+ "responses": {
175
+ "default": {
176
+ "description": "default response",
177
+ "content": {
178
+ "application/json": {
179
+ "schema": {
180
+ "type": "array",
181
+ "items": {
182
+ "type": "object",
183
+ "properties": {
184
+ "id": {
185
+ "type": "string"
186
+ },
187
+ "title": {
188
+ "type": "string"
189
+ },
190
+ "description": {
191
+ "type": "string"
192
+ },
193
+ "type": {
194
+ "type": "string",
195
+ "enum": [
196
+ "SCORING_TYPE",
197
+ "S_PART",
198
+ "S_SCORING",
199
+ "S_VALUE"
200
+ ]
201
+ },
202
+ "depth": {
203
+ "type": "integer"
204
+ },
205
+ "score": {
206
+ "type": "integer"
207
+ },
208
+ "scorePercent": {
209
+ "type": "integer"
210
+ }
211
+ }
212
+ }
213
+ }
214
+ }
215
+ }
216
+ }
217
+ }
218
+ },
219
+ {
220
+ "path": "/api/v2/scoring/criteria/{id}/children",
221
+ "method": "GET",
222
+ "operationId": "getChildren",
223
+ "summary": "Get children of scoring criteria item",
224
+ "description": "Returns the direct children of the specified scoring criteria item. Results are sorted by score descending.",
225
+ "tags": [
226
+ "Scoring Criteria"
227
+ ],
228
+ "parameters": [
229
+ {
230
+ "name": "id",
231
+ "in": "path",
232
+ "description": "ID of the parent scoring criteria item",
233
+ "required": true,
234
+ "schema": {
235
+ "type": "string"
236
+ }
237
+ }
238
+ ],
239
+ "requestBody": null,
240
+ "responses": {
241
+ "default": {
242
+ "description": "default response",
243
+ "content": {
244
+ "application/json": {
245
+ "schema": {
246
+ "type": "array",
247
+ "items": {
248
+ "type": "object",
249
+ "properties": {
250
+ "id": {
251
+ "type": "string"
252
+ },
253
+ "title": {
254
+ "type": "string"
255
+ },
256
+ "description": {
257
+ "type": "string"
258
+ },
259
+ "type": {
260
+ "type": "string",
261
+ "enum": [
262
+ "SCORING_TYPE",
263
+ "S_PART",
264
+ "S_SCORING",
265
+ "S_VALUE"
266
+ ]
267
+ },
268
+ "depth": {
269
+ "type": "integer"
270
+ },
271
+ "score": {
272
+ "type": "integer"
273
+ },
274
+ "scorePercent": {
275
+ "type": "integer"
276
+ }
277
+ }
278
+ }
279
+ }
280
+ }
281
+ }
282
+ }
283
+ }
284
+ },
285
+ {
286
+ "path": "/api/v2/scoring/criteria/{parentId}/items",
287
+ "method": "POST",
288
+ "operationId": "createItem_3",
289
+ "summary": "Create scoring criteria item",
290
+ "description": "Creates a new scoring criteria item under the specified parent. The child type is auto-determined based on the parent type. Score validation applies for s_Scoring type (0-10).",
291
+ "tags": [
292
+ "Scoring Criteria"
293
+ ],
294
+ "parameters": [
295
+ {
296
+ "name": "parentId",
297
+ "in": "path",
298
+ "description": "ID of the parent scoring criteria item",
299
+ "required": true,
300
+ "schema": {
301
+ "type": "string"
302
+ }
303
+ }
304
+ ],
305
+ "requestBody": {
306
+ "content": {
307
+ "application/json": {
308
+ "schema": {
309
+ "type": "object",
310
+ "properties": {
311
+ "title": {
312
+ "type": "string"
313
+ },
314
+ "description": {
315
+ "type": "string"
316
+ },
317
+ "score": {
318
+ "type": "integer",
319
+ "format": "int32"
320
+ }
321
+ }
322
+ }
323
+ }
324
+ }
325
+ },
326
+ "responses": {
327
+ "default": {
328
+ "description": "default response",
329
+ "content": {
330
+ "application/json": {}
331
+ }
332
+ }
333
+ }
334
+ },
335
+ {
336
+ "path": "/api/v2/scoring/criteria/{id}",
337
+ "method": "PUT",
338
+ "operationId": "updateItem_3",
339
+ "summary": "Update scoring criteria item",
340
+ "description": "Updates the title, description, and/or score of a scoring criteria item. Duplicate title validation applies within the same parent.",
341
+ "tags": [
342
+ "Scoring Criteria"
343
+ ],
344
+ "parameters": [
345
+ {
346
+ "name": "id",
347
+ "in": "path",
348
+ "description": "Unique ID of the scoring criteria item to update",
349
+ "required": true,
350
+ "schema": {
351
+ "type": "string"
352
+ }
353
+ }
354
+ ],
355
+ "requestBody": {
356
+ "content": {
357
+ "application/json": {
358
+ "schema": {
359
+ "type": "object",
360
+ "properties": {
361
+ "title": {
362
+ "type": "string"
363
+ },
364
+ "description": {
365
+ "type": "string"
366
+ },
367
+ "score": {
368
+ "type": "integer",
369
+ "format": "int32"
370
+ }
371
+ }
372
+ }
373
+ }
374
+ }
375
+ },
376
+ "responses": {
377
+ "default": {
378
+ "description": "default response",
379
+ "content": {
380
+ "application/json": {
381
+ "schema": {
382
+ "type": "object",
383
+ "properties": {
384
+ "id": {
385
+ "type": "string"
386
+ },
387
+ "title": {
388
+ "type": "string"
389
+ },
390
+ "description": {
391
+ "type": "string"
392
+ },
393
+ "type": {
394
+ "type": "string",
395
+ "enum": [
396
+ "SCORING_TYPE",
397
+ "S_PART",
398
+ "S_SCORING",
399
+ "S_VALUE"
400
+ ]
401
+ },
402
+ "depth": {
403
+ "type": "integer"
404
+ },
405
+ "score": {
406
+ "type": "integer"
407
+ },
408
+ "scorePercent": {
409
+ "type": "integer"
410
+ }
411
+ }
412
+ }
413
+ }
414
+ }
415
+ }
416
+ }
417
+ }
418
+ ]
419
+ }
@@ -6,7 +6,7 @@
6
6
  {
7
7
  "path": "/api/v2/template/action-status",
8
8
  "method": "GET",
9
- "operationId": "getAll",
9
+ "operationId": "getAll_1",
10
10
  "summary": "Get all action status templates",
11
11
  "description": "Retrieves a complete list of all action status templates available in the system. Action status templates define the possible states for improvement actions (e.g., 'Open', 'In Progress', 'Completed', 'Closed'). Use this endpoint when you need to populate dropdown menus, display available status options, or validate status references. The response includes the template ID and title for each action status. Synonyms: list action statuses, get all action states, retrieve status options, fetch action status catalog.",
12
12
  "tags": [],
@@ -36,9 +36,9 @@
36
36
  "schema": {
37
37
  "type": "string",
38
38
  "enum": [
39
- "A",
40
- "N",
41
- "R"
39
+ "ADMIN",
40
+ "NORMAL",
41
+ "READER"
42
42
  ]
43
43
  }
44
44
  },
@@ -440,9 +440,9 @@
440
440
  "userLevel": {
441
441
  "type": "string",
442
442
  "enum": [
443
- "A",
444
- "N",
445
- "R"
443
+ "ADMIN",
444
+ "NORMAL",
445
+ "READER"
446
446
  ]
447
447
  },
448
448
  "defaultProjectType": {
@@ -593,9 +593,9 @@
593
593
  "userLevel": {
594
594
  "type": "string",
595
595
  "enum": [
596
- "A",
597
- "N",
598
- "R"
596
+ "ADMIN",
597
+ "NORMAL",
598
+ "READER"
599
599
  ]
600
600
  },
601
601
  "defaultProjectType": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmea-api-mcp-server",
3
- "version": "1.1.32",
3
+ "version": "1.1.34",
4
4
  "description": "MCP server for serving API documentation from endpoints directory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",