fmea-api-mcp-server 1.0.0

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,93 @@
1
+ {
2
+ "category": "Failure Modes & FMM Diagram",
3
+ "version": "v2",
4
+ "description": "실패모드 및 FMM 다이어그램 관련 API",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/projects/{projectId}/block-diagrams/{blockDiagramId}/failure-modes/{failureModeId}",
8
+ "method": "GET",
9
+ "summary": "Get Failure Mode",
10
+ "description": "Retrieve a specific failure mode from a block diagram",
11
+ "tags": [],
12
+ "parameters": [
13
+ {
14
+ "name": "projectId",
15
+ "in": "path",
16
+ "required": true,
17
+ "schema": {
18
+ "type": "string"
19
+ }
20
+ },
21
+ {
22
+ "name": "blockDiagramId",
23
+ "in": "path",
24
+ "required": true,
25
+ "schema": {
26
+ "type": "string"
27
+ }
28
+ },
29
+ {
30
+ "name": "failureModeId",
31
+ "in": "path",
32
+ "required": true,
33
+ "schema": {
34
+ "type": "string"
35
+ }
36
+ }
37
+ ],
38
+ "requestBody": null,
39
+ "responses": {
40
+ "default": {
41
+ "description": "default response",
42
+ "content": {
43
+ "*/*": {}
44
+ }
45
+ }
46
+ }
47
+ },
48
+ {
49
+ "path": "/api/v2/projects/{projectId}/failure-modes/{failureModeId}/fmm-diagram",
50
+ "method": "PUT",
51
+ "summary": "Update FMM diagram",
52
+ "description": "Update FMM diagram for a specific failure mode",
53
+ "tags": [
54
+ "FMM Diagram"
55
+ ],
56
+ "parameters": [
57
+ {
58
+ "name": "projectId",
59
+ "in": "path",
60
+ "required": true,
61
+ "schema": {
62
+ "type": "string"
63
+ }
64
+ },
65
+ {
66
+ "name": "failureModeId",
67
+ "in": "path",
68
+ "required": true,
69
+ "schema": {
70
+ "type": "string"
71
+ }
72
+ }
73
+ ],
74
+ "requestBody": {
75
+ "content": {
76
+ "application/json": {
77
+ "schema": {
78
+ "$ref": "#/components/schemas/FMMDiagramUpdateDTO"
79
+ }
80
+ }
81
+ }
82
+ },
83
+ "responses": {
84
+ "default": {
85
+ "description": "default response",
86
+ "content": {
87
+ "application/json": {}
88
+ }
89
+ }
90
+ }
91
+ }
92
+ ]
93
+ }
@@ -0,0 +1,41 @@
1
+ {
2
+ "category": "Files",
3
+ "version": "v2",
4
+ "description": "파일 관리 관련 API",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/files",
8
+ "method": "POST",
9
+ "operationId": "upload",
10
+ "summary": "Upload files",
11
+ "description": "Upload one or more files",
12
+ "tags": [],
13
+ "parameters": [],
14
+ "requestBody": {
15
+ "content": {
16
+ "multipart/form-data": {
17
+ "schema": {
18
+ "type": "object",
19
+ "properties": {
20
+ "files": {
21
+ "type": "array",
22
+ "items": {
23
+ "$ref": "#/components/schemas/FormDataBodyPart"
24
+ }
25
+ }
26
+ }
27
+ }
28
+ }
29
+ }
30
+ },
31
+ "responses": {
32
+ "default": {
33
+ "description": "default response",
34
+ "content": {
35
+ "application/json": {}
36
+ }
37
+ }
38
+ }
39
+ }
40
+ ]
41
+ }
@@ -0,0 +1,204 @@
1
+ {
2
+ "category": "FourM Analysis",
3
+ "version": "v2",
4
+ "description": "4M 분석 관련 API",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/fourm",
8
+ "method": "GET",
9
+ "summary": "List 4M analysis items",
10
+ "description": "Retrieves a list of 4M (Man, Machine, Material, Environment) analysis items with optional filtering by project and tags",
11
+ "tags": [],
12
+ "parameters": [
13
+ {
14
+ "name": "projectId",
15
+ "in": "query",
16
+ "required": false,
17
+ "schema": {
18
+ "type": "string"
19
+ }
20
+ },
21
+ {
22
+ "name": "tag",
23
+ "in": "query",
24
+ "required": false,
25
+ "schema": {
26
+ "type": "string"
27
+ }
28
+ },
29
+ {
30
+ "name": "secondTag",
31
+ "in": "query",
32
+ "required": false,
33
+ "schema": {
34
+ "type": "string"
35
+ }
36
+ }
37
+ ],
38
+ "requestBody": null,
39
+ "responses": {
40
+ "default": {
41
+ "description": "default response",
42
+ "content": {
43
+ "application/json": {}
44
+ }
45
+ }
46
+ }
47
+ },
48
+ {
49
+ "path": "/api/v2/fourm",
50
+ "method": "POST",
51
+ "summary": "Create 4M analysis item",
52
+ "description": "Creates a new 4M (Man, Machine, Material, Environment) analysis item",
53
+ "tags": [],
54
+ "parameters": [],
55
+ "requestBody": {
56
+ "content": {
57
+ "application/json": {
58
+ "schema": {
59
+ "$ref": "#/components/schemas/FourMCreationDTO"
60
+ }
61
+ }
62
+ }
63
+ },
64
+ "responses": {
65
+ "default": {
66
+ "description": "default response",
67
+ "content": {
68
+ "application/json": {}
69
+ }
70
+ }
71
+ }
72
+ },
73
+ {
74
+ "path": "/api/v2/fourm/{id}",
75
+ "method": "GET",
76
+ "summary": "Get 4M analysis item by ID",
77
+ "description": "Retrieves a specific 4M analysis item by its ID",
78
+ "tags": [],
79
+ "parameters": [
80
+ {
81
+ "name": "id",
82
+ "in": "path",
83
+ "required": true,
84
+ "schema": {
85
+ "type": "integer",
86
+ "format": "int32"
87
+ }
88
+ }
89
+ ],
90
+ "requestBody": null,
91
+ "responses": {
92
+ "default": {
93
+ "description": "default response",
94
+ "content": {
95
+ "application/json": {}
96
+ }
97
+ }
98
+ }
99
+ },
100
+ {
101
+ "path": "/api/v2/fourm/{id}",
102
+ "method": "PUT",
103
+ "summary": "Update 4M analysis item",
104
+ "description": "Updates an existing 4M analysis item",
105
+ "tags": [],
106
+ "parameters": [
107
+ {
108
+ "name": "id",
109
+ "in": "path",
110
+ "required": true,
111
+ "schema": {
112
+ "type": "integer",
113
+ "format": "int32"
114
+ }
115
+ }
116
+ ],
117
+ "requestBody": {
118
+ "content": {
119
+ "application/json": {
120
+ "schema": {
121
+ "$ref": "#/components/schemas/FourMUpdateDTO"
122
+ }
123
+ }
124
+ }
125
+ },
126
+ "responses": {
127
+ "default": {
128
+ "description": "default response",
129
+ "content": {
130
+ "application/json": {}
131
+ }
132
+ }
133
+ }
134
+ },
135
+ {
136
+ "path": "/api/v2/fourm/{id}",
137
+ "method": "DELETE",
138
+ "summary": "Delete 4M analysis item",
139
+ "description": "Deletes a 4M analysis item by its ID",
140
+ "tags": [],
141
+ "parameters": [
142
+ {
143
+ "name": "id",
144
+ "in": "path",
145
+ "required": true,
146
+ "schema": {
147
+ "type": "integer",
148
+ "format": "int32"
149
+ }
150
+ }
151
+ ],
152
+ "requestBody": null,
153
+ "responses": {
154
+ "default": {
155
+ "description": "default response",
156
+ "content": {
157
+ "*/*": {}
158
+ }
159
+ }
160
+ }
161
+ }
162
+ ],
163
+ "schemas": {
164
+ "FourMCreationDTO": {
165
+ "type": "object",
166
+ "properties": {
167
+ "projectId": {
168
+ "type": "string"
169
+ },
170
+ "tag": {
171
+ "type": "string"
172
+ },
173
+ "secondTag": {
174
+ "type": "string"
175
+ },
176
+ "category": {
177
+ "type": "string",
178
+ "enum": ["Man", "Machine", "Material", "Environment"]
179
+ },
180
+ "workElement": {
181
+ "type": "string"
182
+ },
183
+ "functionRequirement": {
184
+ "type": "string"
185
+ }
186
+ }
187
+ },
188
+ "FourMUpdateDTO": {
189
+ "type": "object",
190
+ "properties": {
191
+ "category": {
192
+ "type": "string",
193
+ "enum": ["Man", "Machine", "Material", "Environment"]
194
+ },
195
+ "workElement": {
196
+ "type": "string"
197
+ },
198
+ "functionRequirement": {
199
+ "type": "string"
200
+ }
201
+ }
202
+ }
203
+ }
204
+ }
@@ -0,0 +1,271 @@
1
+ {
2
+ "category": "Project Management",
3
+ "version": "v2",
4
+ "description": "프로젝트 관리 관련 API",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/projects/{projectId}",
8
+ "method": "GET",
9
+ "operationId": "get_3",
10
+ "summary": "Get project by ID (v2)",
11
+ "description": "Get a project by its ID",
12
+ "tags": [],
13
+ "parameters": [
14
+ {
15
+ "name": "projectId",
16
+ "in": "path",
17
+ "required": true,
18
+ "schema": {
19
+ "type": "string"
20
+ }
21
+ }
22
+ ],
23
+ "responses": {
24
+ "default": {
25
+ "description": "default response",
26
+ "content": {
27
+ "application/json": {}
28
+ }
29
+ }
30
+ }
31
+ },
32
+ {
33
+ "path": "/api/v2/projects/my",
34
+ "method": "GET",
35
+ "operationId": "getSummaryList",
36
+ "summary": "Get my projects summary (v2)",
37
+ "description": "Get summary list of user's projects",
38
+ "tags": [],
39
+ "parameters": [],
40
+ "responses": {
41
+ "default": {
42
+ "description": "default response",
43
+ "content": {
44
+ "application/json": {}
45
+ }
46
+ }
47
+ }
48
+ },
49
+ {
50
+ "path": "/api/v2/projects/{projectId}/summary",
51
+ "method": "GET",
52
+ "operationId": "getSummary",
53
+ "summary": "Get project summary",
54
+ "description": "Get project summary by ID",
55
+ "tags": [],
56
+ "parameters": [
57
+ {
58
+ "name": "projectId",
59
+ "in": "path",
60
+ "required": true,
61
+ "schema": {
62
+ "type": "string"
63
+ }
64
+ }
65
+ ],
66
+ "responses": {
67
+ "default": {
68
+ "description": "default response",
69
+ "content": {
70
+ "application/json": {}
71
+ }
72
+ }
73
+ }
74
+ },
75
+ {
76
+ "path": "/api/v2/projects/{projectId}/members",
77
+ "method": "GET",
78
+ "operationId": "getMembers",
79
+ "summary": "Get project members",
80
+ "description": "Get all members of a project",
81
+ "tags": [],
82
+ "parameters": [
83
+ {
84
+ "name": "projectId",
85
+ "in": "path",
86
+ "required": true,
87
+ "schema": {
88
+ "type": "string"
89
+ }
90
+ }
91
+ ],
92
+ "responses": {
93
+ "default": {
94
+ "description": "default response",
95
+ "content": {
96
+ "application/json": {}
97
+ }
98
+ }
99
+ }
100
+ },
101
+ {
102
+ "path": "/api/v2/projects/{projectId}/join-requests",
103
+ "method": "GET",
104
+ "operationId": "getJoinRequestsByProjectId",
105
+ "summary": "Get project join requests",
106
+ "description": "Get all join requests for a project",
107
+ "tags": [],
108
+ "parameters": [
109
+ {
110
+ "name": "projectId",
111
+ "in": "path",
112
+ "required": true,
113
+ "schema": {
114
+ "type": "string"
115
+ }
116
+ }
117
+ ],
118
+ "responses": {
119
+ "default": {
120
+ "description": "default response",
121
+ "content": {
122
+ "application/json": {}
123
+ }
124
+ }
125
+ }
126
+ },
127
+ {
128
+ "path": "/api/v2/projects/{projectId}/join-requests",
129
+ "method": "POST",
130
+ "operationId": "createJoinRequest",
131
+ "summary": "Create join request",
132
+ "description": "Create a new join request for a project",
133
+ "tags": [],
134
+ "parameters": [
135
+ {
136
+ "name": "projectId",
137
+ "in": "path",
138
+ "required": true,
139
+ "schema": {
140
+ "type": "string"
141
+ }
142
+ }
143
+ ],
144
+ "requestBody": {
145
+ "content": {
146
+ "*/*": {
147
+ "schema": {
148
+ "$ref": "#/components/schemas/ProjectJoinRequestCreationDTO"
149
+ }
150
+ }
151
+ }
152
+ },
153
+ "responses": {
154
+ "default": {
155
+ "description": "default response",
156
+ "content": {
157
+ "application/json": {}
158
+ }
159
+ }
160
+ }
161
+ },
162
+ {
163
+ "path": "/api/v2/projects/{projectId}/join-requests",
164
+ "method": "PUT",
165
+ "operationId": "updateJoinRequests",
166
+ "summary": "Update join requests",
167
+ "description": "Batch update join requests for a project",
168
+ "tags": [],
169
+ "parameters": [
170
+ {
171
+ "name": "projectId",
172
+ "in": "path",
173
+ "required": true,
174
+ "schema": {
175
+ "type": "string"
176
+ }
177
+ }
178
+ ],
179
+ "requestBody": {
180
+ "content": {
181
+ "application/json": {
182
+ "schema": {
183
+ "type": "array",
184
+ "items": {
185
+ "$ref": "#/components/schemas/ProjectJoinRequestBatchUpdateDTO"
186
+ }
187
+ }
188
+ }
189
+ }
190
+ },
191
+ "responses": {
192
+ "default": {
193
+ "description": "default response",
194
+ "content": {
195
+ "*/*": {}
196
+ }
197
+ }
198
+ }
199
+ },
200
+ {
201
+ "path": "/api/v2/projects/{projectId}/join-requests/{requestId}",
202
+ "method": "PUT",
203
+ "operationId": "updateJoinRequest",
204
+ "summary": "Update single join request",
205
+ "description": "Update a specific join request",
206
+ "tags": [],
207
+ "parameters": [
208
+ {
209
+ "name": "projectId",
210
+ "in": "path",
211
+ "required": true,
212
+ "schema": {
213
+ "type": "string"
214
+ }
215
+ },
216
+ {
217
+ "name": "requestId",
218
+ "in": "path",
219
+ "required": true,
220
+ "schema": {
221
+ "type": "integer",
222
+ "format": "int32"
223
+ }
224
+ }
225
+ ],
226
+ "requestBody": {
227
+ "content": {
228
+ "application/json": {
229
+ "schema": {
230
+ "$ref": "#/components/schemas/ProjectJoinRequestUpdateDTO"
231
+ }
232
+ }
233
+ }
234
+ },
235
+ "responses": {
236
+ "default": {
237
+ "description": "default response",
238
+ "content": {
239
+ "*/*": {}
240
+ }
241
+ }
242
+ }
243
+ },
244
+ {
245
+ "path": "/api/v2/projects/{projectId}/high-items",
246
+ "method": "GET",
247
+ "operationId": "list_8",
248
+ "summary": "List project high items",
249
+ "description": "Get high items for a project",
250
+ "tags": [],
251
+ "parameters": [
252
+ {
253
+ "name": "projectId",
254
+ "in": "path",
255
+ "required": true,
256
+ "schema": {
257
+ "type": "string"
258
+ }
259
+ }
260
+ ],
261
+ "responses": {
262
+ "default": {
263
+ "description": "default response",
264
+ "content": {
265
+ "application/json": {}
266
+ }
267
+ }
268
+ }
269
+ }
270
+ ]
271
+ }
@@ -0,0 +1,61 @@
1
+ {
2
+ "category": "System",
3
+ "version": "v2",
4
+ "description": "시스템 관련 API",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/open/metrics/{apType}/constants",
8
+ "method": "GET",
9
+ "summary": "Get metric constants",
10
+ "description": "Get metric constants for the specified analysis type",
11
+ "tags": [],
12
+ "operationId": "getMetricConstants",
13
+ "parameters": [
14
+ {
15
+ "name": "apType",
16
+ "in": "path",
17
+ "required": true,
18
+ "schema": {
19
+ "type": "string"
20
+ }
21
+ }
22
+ ],
23
+ "requestBody": null,
24
+ "responses": {
25
+ "default": {
26
+ "description": "default response",
27
+ "content": {
28
+ "*/*": {}
29
+ }
30
+ }
31
+ }
32
+ },
33
+ {
34
+ "path": "/api/v2/system/health-check",
35
+ "method": "GET",
36
+ "summary": "Health check endpoint",
37
+ "description": "Check the health status of the system with optional context path",
38
+ "tags": [],
39
+ "operationId": "checkContext",
40
+ "parameters": [
41
+ {
42
+ "name": "contextPath",
43
+ "in": "query",
44
+ "required": false,
45
+ "schema": {
46
+ "type": "string"
47
+ }
48
+ }
49
+ ],
50
+ "requestBody": null,
51
+ "responses": {
52
+ "default": {
53
+ "description": "default response",
54
+ "content": {
55
+ "application/json": {}
56
+ }
57
+ }
58
+ }
59
+ }
60
+ ]
61
+ }