fmea-api-mcp-server 1.1.49 → 1.1.51

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.
@@ -129,11 +129,20 @@
129
129
  "method": "GET",
130
130
  "operationId": "getAllGroups",
131
131
  "summary": "List all classification groups",
132
- "description": "Returns all classification groups with their nested items. Each group contains items with symbol type (text or image) and optional image URL.",
132
+ "description": "Returns all classification groups with their nested items. Each group contains items with symbol type (text or image) and optional image URL. Supports optional keyword search on group title or item title.",
133
133
  "tags": [
134
134
  "Classification"
135
135
  ],
136
- "parameters": [],
136
+ "parameters": [
137
+ {
138
+ "name": "q",
139
+ "in": "query",
140
+ "description": "Keyword filter applied to group title or item title (max 100 chars)",
141
+ "schema": {
142
+ "type": "string"
143
+ }
144
+ }
145
+ ],
137
146
  "requestBody": null,
138
147
  "responses": {
139
148
  "default": {
@@ -69,6 +69,40 @@
69
69
  }
70
70
  },
71
71
  "x-dependency-warning": "REQUIRES PRIOR FILE UPLOAD via [POST /api/v2/files]. The {uuid} parameter is the file identifier returned by the upload endpoint."
72
+ },
73
+ {
74
+ "path": "/api/v2/condition-library-excel/export",
75
+ "method": "GET",
76
+ "operationId": "export_11",
77
+ "summary": "Export condition library to Excel",
78
+ "description": "Exports condition library of specified type to an XLSX file.",
79
+ "tags": [
80
+ "Condition Library Excel"
81
+ ],
82
+ "parameters": [
83
+ {
84
+ "name": "type",
85
+ "in": "query",
86
+ "description": "Condition library type (stress/design/process)",
87
+ "required": true,
88
+ "schema": {
89
+ "type": "string"
90
+ }
91
+ }
92
+ ],
93
+ "requestBody": null,
94
+ "responses": {
95
+ "default": {
96
+ "description": "default response",
97
+ "content": {
98
+ "application/json": {
99
+ "schema": {
100
+ "type": "object"
101
+ }
102
+ }
103
+ }
104
+ }
105
+ }
72
106
  }
73
107
  ]
74
108
  }
@@ -0,0 +1,40 @@
1
+ {
2
+ "category": "Division Excel",
3
+ "version": "v2",
4
+ "description": "",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/division-excel/export",
8
+ "method": "GET",
9
+ "operationId": "export_4",
10
+ "summary": "Export divisions to Excel",
11
+ "description": "Exports divisions to an XLSX file and returns a download URI. Supports optional search filter. Requires admin permission.",
12
+ "tags": [
13
+ "DivisionExcel"
14
+ ],
15
+ "parameters": [
16
+ {
17
+ "name": "q",
18
+ "in": "query",
19
+ "description": "Division name keyword filter for exported rows",
20
+ "schema": {
21
+ "type": "string"
22
+ }
23
+ }
24
+ ],
25
+ "requestBody": null,
26
+ "responses": {
27
+ "default": {
28
+ "description": "default response",
29
+ "content": {
30
+ "application/json": {
31
+ "schema": {
32
+ "type": "object"
33
+ }
34
+ }
35
+ }
36
+ }
37
+ }
38
+ }
39
+ ]
40
+ }
@@ -508,6 +508,43 @@
508
508
  }
509
509
  }
510
510
  }
511
+ },
512
+ {
513
+ "path": "/api/v2/divisions/batch",
514
+ "method": "DELETE",
515
+ "operationId": "deleteBatch",
516
+ "summary": "Delete divisions in batch",
517
+ "description": "Deletes multiple divisions by IDs. All divisions must have no users assigned. Cascade deletes authorized-division mappings and user-division mappings.",
518
+ "tags": [
519
+ "Division"
520
+ ],
521
+ "parameters": [],
522
+ "requestBody": {
523
+ "content": {
524
+ "application/json": {
525
+ "schema": {
526
+ "type": "object",
527
+ "properties": {
528
+ "ids": {
529
+ "type": "array",
530
+ "items": {
531
+ "type": "integer",
532
+ "format": "int32"
533
+ }
534
+ }
535
+ }
536
+ }
537
+ }
538
+ }
539
+ },
540
+ "responses": {
541
+ "default": {
542
+ "description": "default response",
543
+ "content": {
544
+ "application/json": {}
545
+ }
546
+ }
547
+ }
511
548
  }
512
549
  ]
513
550
  }
@@ -125,11 +125,20 @@
125
125
  "method": "GET",
126
126
  "operationId": "getAllEvaluation",
127
127
  "summary": "Get all evaluation criteria by FMEA type",
128
- "description": "Returns all FMEA types with their criteria lists. Each entry includes the FMEA type name and its child criteria. Used for overview of all evaluation criteria across FMEA types.",
128
+ "description": "Returns all FMEA types with their criteria lists. Each entry includes the FMEA type name and its child criteria. Used for overview of all evaluation criteria across FMEA types. Supports optional keyword search on criteria name or description.",
129
129
  "tags": [
130
130
  "Evaluation Criteria"
131
131
  ],
132
- "parameters": [],
132
+ "parameters": [
133
+ {
134
+ "name": "q",
135
+ "in": "query",
136
+ "description": "Keyword filter applied to criteria name and description (max 100 chars)",
137
+ "schema": {
138
+ "type": "string"
139
+ }
140
+ }
141
+ ],
133
142
  "requestBody": null,
134
143
  "responses": {
135
144
  "default": {
@@ -180,7 +189,7 @@
180
189
  "method": "GET",
181
190
  "operationId": "getCriteriaByFmeaType",
182
191
  "summary": "List criteria for a specific FMEA type",
183
- "description": "Returns the evaluation criteria list for the specified FMEA type. Returns an empty list if the FMEA type has no criteria configured. Returns 400 if the fmeaType is invalid.",
192
+ "description": "Returns the evaluation criteria list for the specified FMEA type. Returns an empty list if the FMEA type has no criteria configured. Returns 400 if the fmeaType is invalid. Supports optional keyword search on criteria name or description.",
184
193
  "tags": [
185
194
  "Evaluation Criteria"
186
195
  ],
@@ -201,6 +210,14 @@
201
210
  "CPLAN"
202
211
  ]
203
212
  }
213
+ },
214
+ {
215
+ "name": "q",
216
+ "in": "query",
217
+ "description": "Keyword filter applied to criteria name and description (max 100 chars)",
218
+ "schema": {
219
+ "type": "string"
220
+ }
204
221
  }
205
222
  ],
206
223
  "requestBody": null,
@@ -0,0 +1,48 @@
1
+ {
2
+ "category": "Evaluation Excel",
3
+ "version": "v2",
4
+ "description": "",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/evaluation-excel/export",
8
+ "method": "GET",
9
+ "operationId": "export_5",
10
+ "summary": "Export evaluation criteria to Excel",
11
+ "description": "Exports evaluation criteria to an XLSX file and returns a download URI. Supports optional FMEA type filter and keyword search on criteria name or description. Requires admin permission.",
12
+ "tags": [
13
+ "EvaluationExcel"
14
+ ],
15
+ "parameters": [
16
+ {
17
+ "name": "fmeaType",
18
+ "in": "query",
19
+ "description": "FMEA type filter (e.g. stress|design|process). Required.",
20
+ "schema": {
21
+ "type": "string"
22
+ }
23
+ },
24
+ {
25
+ "name": "q",
26
+ "in": "query",
27
+ "description": "Keyword filter for exported rows (max 100 chars)",
28
+ "schema": {
29
+ "type": "string"
30
+ }
31
+ }
32
+ ],
33
+ "requestBody": null,
34
+ "responses": {
35
+ "default": {
36
+ "description": "default response",
37
+ "content": {
38
+ "application/json": {
39
+ "schema": {
40
+ "type": "object"
41
+ }
42
+ }
43
+ }
44
+ }
45
+ }
46
+ }
47
+ ]
48
+ }
@@ -0,0 +1,40 @@
1
+ {
2
+ "category": "Notice Excel",
3
+ "version": "v2",
4
+ "description": "",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/notice-excel/export",
8
+ "method": "GET",
9
+ "operationId": "export_6",
10
+ "summary": "Export notices to Excel",
11
+ "description": "Exports notices to an XLSX file and returns a download URI. Supports optional visibility filter. Requires admin permission.",
12
+ "tags": [
13
+ "NoticeExcel"
14
+ ],
15
+ "parameters": [
16
+ {
17
+ "name": "visible",
18
+ "in": "query",
19
+ "description": "Filter by visibility (true/false, omit for all)",
20
+ "schema": {
21
+ "type": "boolean"
22
+ }
23
+ }
24
+ ],
25
+ "requestBody": null,
26
+ "responses": {
27
+ "default": {
28
+ "description": "default response",
29
+ "content": {
30
+ "application/json": {
31
+ "schema": {
32
+ "type": "object"
33
+ }
34
+ }
35
+ }
36
+ }
37
+ }
38
+ }
39
+ ]
40
+ }
@@ -71,6 +71,14 @@
71
71
  "schema": {
72
72
  "type": "boolean"
73
73
  }
74
+ },
75
+ {
76
+ "name": "q",
77
+ "in": "query",
78
+ "description": "Search keyword for title and content (max 100 chars)",
79
+ "schema": {
80
+ "type": "string"
81
+ }
74
82
  }
75
83
  ],
76
84
  "requestBody": null,
@@ -445,6 +453,43 @@
445
453
  }
446
454
  }
447
455
  }
456
+ },
457
+ {
458
+ "path": "/api/v2/notices/batch",
459
+ "method": "DELETE",
460
+ "operationId": "deleteBatch_1",
461
+ "summary": "Batch delete notices",
462
+ "description": "Deletes multiple notices by ID list. Requires admin permission. Returns 404 if any notice ID does not exist.",
463
+ "tags": [
464
+ "Notice"
465
+ ],
466
+ "parameters": [],
467
+ "requestBody": {
468
+ "content": {
469
+ "application/json": {
470
+ "schema": {
471
+ "type": "object",
472
+ "properties": {
473
+ "ids": {
474
+ "type": "array",
475
+ "items": {
476
+ "type": "integer",
477
+ "format": "int64"
478
+ }
479
+ }
480
+ }
481
+ }
482
+ }
483
+ }
484
+ },
485
+ "responses": {
486
+ "default": {
487
+ "description": "default response",
488
+ "content": {
489
+ "application/json": {}
490
+ }
491
+ }
492
+ }
448
493
  }
449
494
  ]
450
495
  }
@@ -0,0 +1,90 @@
1
+ {
2
+ "category": "Process Symbol Excel",
3
+ "version": "v2",
4
+ "description": "",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/process-symbol-excel/export",
8
+ "method": "GET",
9
+ "operationId": "export_7",
10
+ "summary": "Export process symbols to Excel",
11
+ "description": "Exports all process symbols to an XLSX file and returns a download URI.",
12
+ "tags": [
13
+ "ProcessSymbolExcel"
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
+ }
25
+ }
26
+ }
27
+ }
28
+ }
29
+ },
30
+ {
31
+ "path": "/api/v2/process-symbol-excel/{uuid}",
32
+ "method": "POST",
33
+ "operationId": "importExcel",
34
+ "summary": "Import process symbols from Excel",
35
+ "description": "Parses an uploaded Excel file and replaces all process symbols.",
36
+ "tags": [
37
+ "ProcessSymbolExcel"
38
+ ],
39
+ "parameters": [
40
+ {
41
+ "name": "uuid",
42
+ "in": "path",
43
+ "description": "UUID of uploaded Excel file",
44
+ "required": true,
45
+ "schema": {
46
+ "type": "string"
47
+ }
48
+ },
49
+ {
50
+ "name": "rowStart",
51
+ "in": "query",
52
+ "description": "Data start row (1-based, default: 2 to skip header)",
53
+ "schema": {
54
+ "type": "integer",
55
+ "default": 2,
56
+ "format": "int32"
57
+ }
58
+ }
59
+ ],
60
+ "requestBody": null,
61
+ "responses": {
62
+ "default": {
63
+ "description": "default response",
64
+ "content": {
65
+ "application/json": {
66
+ "schema": {
67
+ "type": "array",
68
+ "items": {
69
+ "type": "object",
70
+ "properties": {
71
+ "symbol": {
72
+ "type": "string"
73
+ },
74
+ "description": {
75
+ "type": "string"
76
+ },
77
+ "sortOrder": {
78
+ "type": "integer"
79
+ }
80
+ }
81
+ }
82
+ }
83
+ }
84
+ }
85
+ }
86
+ },
87
+ "x-dependency-warning": "REQUIRES PRIOR FILE UPLOAD via [POST /api/v2/files]. The {uuid} parameter is the file identifier returned by the upload endpoint."
88
+ }
89
+ ]
90
+ }
@@ -0,0 +1,185 @@
1
+ {
2
+ "category": "Revisions",
3
+ "version": "v2",
4
+ "description": "",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/projects/{projectId}/revisions",
8
+ "method": "GET",
9
+ "operationId": "list_16",
10
+ "summary": "List project revision history",
11
+ "description": "Retrieves paged revision (change history) records for a project. Supports optional filtering by target (domain type), action (operation type), refId (reference ID), and reportNo (report number). Results are sorted by updated_date DESC. Edit-lock records (empty updated_date) are automatically excluded.",
12
+ "tags": [
13
+ "Revision"
14
+ ],
15
+ "parameters": [
16
+ {
17
+ "name": "projectId",
18
+ "in": "path",
19
+ "description": "Project ID",
20
+ "required": true,
21
+ "schema": {
22
+ "type": "string"
23
+ }
24
+ },
25
+ {
26
+ "name": "target",
27
+ "in": "query",
28
+ "description": "Domain filter (target entity type). See RevisionMenuCode for allowed values.",
29
+ "schema": {
30
+ "type": "string"
31
+ }
32
+ },
33
+ {
34
+ "name": "refId",
35
+ "in": "query",
36
+ "description": "Reference ID (FMM ID, block ID, etc.)",
37
+ "schema": {
38
+ "type": "string"
39
+ }
40
+ },
41
+ {
42
+ "name": "reportNo",
43
+ "in": "query",
44
+ "description": "Worksheet report number",
45
+ "schema": {
46
+ "type": "string"
47
+ }
48
+ },
49
+ {
50
+ "name": "action",
51
+ "in": "query",
52
+ "description": "Action type filter. See RevisionActionCode for allowed values.",
53
+ "schema": {
54
+ "type": "string"
55
+ }
56
+ },
57
+ {
58
+ "name": "q",
59
+ "in": "query",
60
+ "description": "Search keyword for revision description (comma-separated OR)",
61
+ "schema": {
62
+ "type": "string"
63
+ }
64
+ },
65
+ {
66
+ "name": "useSynonym",
67
+ "in": "query",
68
+ "description": "Expand search with synonym dictionary (default: true)",
69
+ "schema": {
70
+ "type": "boolean",
71
+ "default": true
72
+ }
73
+ },
74
+ {
75
+ "name": "page",
76
+ "in": "query",
77
+ "description": "Page number (default: 1)",
78
+ "schema": {
79
+ "type": "integer",
80
+ "default": 1,
81
+ "format": "int32"
82
+ }
83
+ },
84
+ {
85
+ "name": "size",
86
+ "in": "query",
87
+ "description": "Page size (1-1000, default: 50)",
88
+ "schema": {
89
+ "type": "integer",
90
+ "default": 50,
91
+ "format": "int32"
92
+ }
93
+ }
94
+ ],
95
+ "requestBody": null,
96
+ "responses": {
97
+ "default": {
98
+ "description": "default response",
99
+ "content": {
100
+ "application/json": {
101
+ "schema": {
102
+ "type": "object",
103
+ "properties": {
104
+ "items": {
105
+ "type": "array",
106
+ "items": {
107
+ "type": "object",
108
+ "properties": {
109
+ "id": {
110
+ "type": "integer"
111
+ },
112
+ "menuCode": {
113
+ "type": "string",
114
+ "enum": [
115
+ "PROJECT",
116
+ "BLOCK",
117
+ "FMM",
118
+ "WORKSHEET",
119
+ "ATTACHED_FILE",
120
+ "WORKSHEET_UNIT",
121
+ "CONTROL_PLAN"
122
+ ]
123
+ },
124
+ "actionCode": {
125
+ "type": "string",
126
+ "enum": [
127
+ "F",
128
+ "W",
129
+ "F",
130
+ "W"
131
+ ]
132
+ },
133
+ "projectId": {
134
+ "type": "string"
135
+ },
136
+ "userId": {
137
+ "type": "string"
138
+ },
139
+ "userName": {
140
+ "type": "string"
141
+ },
142
+ "reportNo": {
143
+ "type": "string"
144
+ },
145
+ "refId": {
146
+ "type": "string"
147
+ },
148
+ "updatedDateTime": {
149
+ "type": "string",
150
+ "format": "date-time"
151
+ },
152
+ "description": {
153
+ "type": "string"
154
+ },
155
+ "updatingStatus": {
156
+ "type": "integer"
157
+ },
158
+ "revisionNumber": {
159
+ "type": "integer"
160
+ }
161
+ }
162
+ }
163
+ },
164
+ "page": {
165
+ "type": "integer"
166
+ },
167
+ "size": {
168
+ "type": "integer"
169
+ },
170
+ "totalElements": {
171
+ "type": "integer",
172
+ "format": "int64"
173
+ },
174
+ "totalPages": {
175
+ "type": "integer"
176
+ }
177
+ }
178
+ }
179
+ }
180
+ }
181
+ }
182
+ }
183
+ }
184
+ ]
185
+ }
@@ -6,7 +6,7 @@
6
6
  {
7
7
  "path": "/api/v2/synonym-excel/export",
8
8
  "method": "GET",
9
- "operationId": "export",
9
+ "operationId": "export_8",
10
10
  "summary": "Export synonyms to Excel",
11
11
  "description": "Exports synonym groups to an XLSX file and returns a download URI. Optional q filter narrows the exported groups before generating the workbook.",
12
12
  "tags": [
@@ -56,7 +56,7 @@
56
56
  {
57
57
  "path": "/api/v2/synonym-excel/{uuid}",
58
58
  "method": "POST",
59
- "operationId": "importExcel",
59
+ "operationId": "importExcel_1",
60
60
  "summary": "Import synonyms from Excel",
61
61
  "description": "Imports synonym groups from a previously uploaded Excel file referenced by uuid. Supports row and column range selection and optional merge into existing groups by first term.",
62
62
  "tags": [
@@ -6,7 +6,7 @@
6
6
  {
7
7
  "path": "/api/v2/synonyms",
8
8
  "method": "DELETE",
9
- "operationId": "deleteBatch",
9
+ "operationId": "deleteBatch_2",
10
10
  "summary": "Delete synonym groups",
11
11
  "description": "Deletes multiple synonym groups using the provided ID list and returns no content.",
12
12
  "tags": [