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,359 @@
1
+ {
2
+ "category": "Knowledge Base",
3
+ "version": "v1",
4
+ "description": "지식 베이스 관련 API",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v1/knowledges/categories/{categoryId}",
8
+ "method": "GET",
9
+ "operationId": "findById_2",
10
+ "summary": "Find knowledge category by ID",
11
+ "description": "Retrieve a specific knowledge category by its ID",
12
+ "tags": [],
13
+ "parameters": [
14
+ {
15
+ "name": "categoryId",
16
+ "in": "path",
17
+ "required": true,
18
+ "schema": {
19
+ "type": "integer",
20
+ "format": "int32"
21
+ }
22
+ }
23
+ ],
24
+ "responses": {
25
+ "default": {
26
+ "description": "default response",
27
+ "content": {
28
+ "application/json": {}
29
+ }
30
+ }
31
+ }
32
+ },
33
+ {
34
+ "path": "/api/v1/knowledges/categories/{categoryId}",
35
+ "method": "PUT",
36
+ "operationId": "updateById",
37
+ "summary": "Update knowledge category by ID",
38
+ "description": "Update an existing knowledge category",
39
+ "tags": [],
40
+ "parameters": [
41
+ {
42
+ "name": "categoryId",
43
+ "in": "path",
44
+ "required": true,
45
+ "schema": {
46
+ "type": "integer",
47
+ "format": "int32"
48
+ }
49
+ }
50
+ ],
51
+ "requestBody": {
52
+ "content": {
53
+ "application/json": {
54
+ "schema": {
55
+ "$ref": "#/components/schemas/KnowledgeCategoryDTO"
56
+ }
57
+ }
58
+ }
59
+ },
60
+ "responses": {
61
+ "default": {
62
+ "description": "default response",
63
+ "content": {
64
+ "application/json": {}
65
+ }
66
+ }
67
+ }
68
+ },
69
+ {
70
+ "path": "/api/v1/knowledges/categories/{categoryId}",
71
+ "method": "DELETE",
72
+ "operationId": "deleteById",
73
+ "summary": "Delete knowledge category by ID",
74
+ "description": "Delete a specific knowledge category",
75
+ "tags": [],
76
+ "parameters": [
77
+ {
78
+ "name": "categoryId",
79
+ "in": "path",
80
+ "required": true,
81
+ "schema": {
82
+ "type": "integer",
83
+ "format": "int32"
84
+ }
85
+ }
86
+ ],
87
+ "responses": {
88
+ "default": {
89
+ "description": "default response",
90
+ "content": {
91
+ "*/*": {}
92
+ }
93
+ }
94
+ }
95
+ },
96
+ {
97
+ "path": "/api/v1/knowledges/categories",
98
+ "method": "GET",
99
+ "operationId": "findAll_1",
100
+ "summary": "Find all knowledge categories",
101
+ "description": "Retrieve all knowledge categories",
102
+ "tags": [],
103
+ "parameters": [],
104
+ "responses": {
105
+ "default": {
106
+ "description": "default response",
107
+ "content": {
108
+ "application/json": {}
109
+ }
110
+ }
111
+ }
112
+ },
113
+ {
114
+ "path": "/api/v1/knowledges/categories",
115
+ "method": "POST",
116
+ "operationId": "save_3",
117
+ "summary": "Create knowledge category",
118
+ "description": "Create a new knowledge category",
119
+ "tags": [],
120
+ "parameters": [],
121
+ "requestBody": {
122
+ "content": {
123
+ "application/json": {
124
+ "schema": {
125
+ "$ref": "#/components/schemas/KnowledgeCategoryDTO"
126
+ }
127
+ }
128
+ }
129
+ },
130
+ "responses": {
131
+ "default": {
132
+ "description": "default response",
133
+ "content": {
134
+ "application/json": {}
135
+ }
136
+ }
137
+ }
138
+ },
139
+ {
140
+ "path": "/api/v1/knowledges/{categoryId}/batch",
141
+ "method": "POST",
142
+ "operationId": "batch",
143
+ "summary": "Batch create knowledge entries",
144
+ "description": "Create multiple knowledge entries in a category",
145
+ "tags": [],
146
+ "parameters": [
147
+ {
148
+ "name": "categoryId",
149
+ "in": "path",
150
+ "required": true,
151
+ "schema": {
152
+ "type": "integer",
153
+ "format": "int32"
154
+ }
155
+ }
156
+ ],
157
+ "requestBody": {
158
+ "content": {
159
+ "*/*": {
160
+ "schema": {
161
+ "type": "array",
162
+ "items": {
163
+ "$ref": "#/components/schemas/KnowledgeCreationDTO"
164
+ }
165
+ }
166
+ }
167
+ }
168
+ },
169
+ "responses": {
170
+ "default": {
171
+ "description": "default response",
172
+ "content": {
173
+ "application/json": {}
174
+ }
175
+ }
176
+ }
177
+ },
178
+ {
179
+ "path": "/api/v1/knowledges/{categoryId}/{knowledgeId}",
180
+ "method": "GET",
181
+ "operationId": "findById_3",
182
+ "summary": "Find knowledge by ID",
183
+ "description": "Retrieve a specific knowledge entry by its category and knowledge ID",
184
+ "tags": [],
185
+ "parameters": [
186
+ {
187
+ "name": "categoryId",
188
+ "in": "path",
189
+ "required": true,
190
+ "schema": {
191
+ "type": "integer",
192
+ "format": "int32"
193
+ }
194
+ },
195
+ {
196
+ "name": "knowledgeId",
197
+ "in": "path",
198
+ "required": true,
199
+ "schema": {
200
+ "type": "integer",
201
+ "format": "int32"
202
+ }
203
+ }
204
+ ],
205
+ "responses": {
206
+ "default": {
207
+ "description": "default response",
208
+ "content": {
209
+ "application/json": {}
210
+ }
211
+ }
212
+ }
213
+ },
214
+ {
215
+ "path": "/api/v1/knowledges/{categoryId}/{knowledgeId}",
216
+ "method": "PUT",
217
+ "operationId": "updateById_1",
218
+ "summary": "Update knowledge by ID",
219
+ "description": "Update an existing knowledge entry",
220
+ "tags": [],
221
+ "parameters": [
222
+ {
223
+ "name": "categoryId",
224
+ "in": "path",
225
+ "required": true,
226
+ "schema": {
227
+ "type": "integer",
228
+ "format": "int32"
229
+ }
230
+ },
231
+ {
232
+ "name": "knowledgeId",
233
+ "in": "path",
234
+ "required": true,
235
+ "schema": {
236
+ "type": "integer",
237
+ "format": "int32"
238
+ }
239
+ }
240
+ ],
241
+ "requestBody": {
242
+ "content": {
243
+ "*/*": {
244
+ "schema": {
245
+ "$ref": "#/components/schemas/KnowledgeUpdatingDTO"
246
+ }
247
+ }
248
+ }
249
+ },
250
+ "responses": {
251
+ "default": {
252
+ "description": "default response",
253
+ "content": {
254
+ "application/json": {}
255
+ }
256
+ }
257
+ }
258
+ },
259
+ {
260
+ "path": "/api/v1/knowledges/{categoryId}/{knowledgeId}",
261
+ "method": "DELETE",
262
+ "operationId": "deleteById_1",
263
+ "summary": "Delete knowledge by ID",
264
+ "description": "Delete a specific knowledge entry",
265
+ "tags": [],
266
+ "parameters": [
267
+ {
268
+ "name": "categoryId",
269
+ "in": "path",
270
+ "required": true,
271
+ "schema": {
272
+ "type": "integer",
273
+ "format": "int32"
274
+ }
275
+ },
276
+ {
277
+ "name": "knowledgeId",
278
+ "in": "path",
279
+ "required": true,
280
+ "schema": {
281
+ "type": "integer",
282
+ "format": "int32"
283
+ }
284
+ }
285
+ ],
286
+ "responses": {
287
+ "default": {
288
+ "description": "default response",
289
+ "content": {
290
+ "*/*": {}
291
+ }
292
+ }
293
+ }
294
+ },
295
+ {
296
+ "path": "/api/v1/knowledges/{categoryId}",
297
+ "method": "GET",
298
+ "operationId": "findAll_2",
299
+ "summary": "Find all knowledge by category",
300
+ "description": "Retrieve all knowledge entries for a specific category",
301
+ "tags": [],
302
+ "parameters": [
303
+ {
304
+ "name": "categoryId",
305
+ "in": "path",
306
+ "required": true,
307
+ "schema": {
308
+ "type": "integer",
309
+ "format": "int32"
310
+ }
311
+ }
312
+ ],
313
+ "responses": {
314
+ "default": {
315
+ "description": "default response",
316
+ "content": {
317
+ "application/json": {}
318
+ }
319
+ }
320
+ }
321
+ },
322
+ {
323
+ "path": "/api/v1/knowledges/{categoryId}",
324
+ "method": "POST",
325
+ "operationId": "save_4",
326
+ "summary": "Create knowledge entry",
327
+ "description": "Create a new knowledge entry in a category",
328
+ "tags": [],
329
+ "parameters": [
330
+ {
331
+ "name": "categoryId",
332
+ "in": "path",
333
+ "required": true,
334
+ "schema": {
335
+ "type": "integer",
336
+ "format": "int32"
337
+ }
338
+ }
339
+ ],
340
+ "requestBody": {
341
+ "content": {
342
+ "*/*": {
343
+ "schema": {
344
+ "$ref": "#/components/schemas/KnowledgeCreationDTO"
345
+ }
346
+ }
347
+ }
348
+ },
349
+ "responses": {
350
+ "default": {
351
+ "description": "default response",
352
+ "content": {
353
+ "application/json": {}
354
+ }
355
+ }
356
+ }
357
+ }
358
+ ]
359
+ }
@@ -0,0 +1,342 @@
1
+ {
2
+ "category": "Project Management",
3
+ "version": "v1",
4
+ "description": "프로젝트 관리 관련 API",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v1/projects",
8
+ "method": "POST",
9
+ "operationId": "save_5",
10
+ "summary": "Create project",
11
+ "description": "Create a new project",
12
+ "tags": [],
13
+ "parameters": [],
14
+ "requestBody": {
15
+ "content": {
16
+ "application/json": {
17
+ "schema": {
18
+ "$ref": "#/components/schemas/ProjectCreationDTO"
19
+ }
20
+ }
21
+ }
22
+ },
23
+ "responses": {
24
+ "default": {
25
+ "description": "default response",
26
+ "content": {
27
+ "application/json": {}
28
+ }
29
+ }
30
+ }
31
+ },
32
+ {
33
+ "path": "/api/v1/projects/my",
34
+ "method": "GET",
35
+ "operationId": "findAllByUserId",
36
+ "summary": "Get user projects",
37
+ "description": "Get all projects for the current user",
38
+ "tags": [],
39
+ "parameters": [
40
+ {
41
+ "name": "size",
42
+ "in": "query",
43
+ "schema": {
44
+ "type": "integer",
45
+ "format": "int32",
46
+ "default": 20
47
+ }
48
+ },
49
+ {
50
+ "name": "page",
51
+ "in": "query",
52
+ "schema": {
53
+ "type": "integer",
54
+ "format": "int32",
55
+ "default": 1
56
+ }
57
+ }
58
+ ],
59
+ "responses": {
60
+ "default": {
61
+ "description": "default response",
62
+ "content": {
63
+ "application/json": {}
64
+ }
65
+ }
66
+ }
67
+ },
68
+ {
69
+ "path": "/api/v1/projects/recommendations",
70
+ "method": "GET",
71
+ "operationId": "getProjects",
72
+ "summary": "Get project recommendations",
73
+ "description": "Get recommended projects",
74
+ "tags": [],
75
+ "parameters": [],
76
+ "responses": {
77
+ "default": {
78
+ "description": "default response",
79
+ "content": {
80
+ "application/json": {}
81
+ }
82
+ }
83
+ }
84
+ },
85
+ {
86
+ "path": "/api/v1/projects/{id}",
87
+ "method": "GET",
88
+ "operationId": "findById_4",
89
+ "summary": "Get project by ID",
90
+ "description": "Get a project by its ID",
91
+ "tags": [],
92
+ "parameters": [
93
+ {
94
+ "name": "id",
95
+ "in": "path",
96
+ "required": true,
97
+ "schema": {
98
+ "type": "string"
99
+ }
100
+ }
101
+ ],
102
+ "responses": {
103
+ "default": {
104
+ "description": "default response",
105
+ "content": {
106
+ "application/json": {}
107
+ }
108
+ }
109
+ }
110
+ },
111
+ {
112
+ "path": "/api/v1/projects/{id}",
113
+ "method": "PUT",
114
+ "operationId": "update",
115
+ "summary": "Update project",
116
+ "description": "Update an existing project",
117
+ "tags": [],
118
+ "parameters": [
119
+ {
120
+ "name": "id",
121
+ "in": "path",
122
+ "required": true,
123
+ "schema": {
124
+ "type": "string"
125
+ }
126
+ }
127
+ ],
128
+ "requestBody": {
129
+ "content": {
130
+ "application/json": {
131
+ "schema": {
132
+ "$ref": "#/components/schemas/ProjectUpdateDTO"
133
+ }
134
+ }
135
+ }
136
+ },
137
+ "responses": {
138
+ "default": {
139
+ "description": "default response",
140
+ "content": {
141
+ "application/json": {}
142
+ }
143
+ }
144
+ }
145
+ },
146
+ {
147
+ "path": "/api/v1/projects/{id}",
148
+ "method": "DELETE",
149
+ "operationId": "delete",
150
+ "summary": "Delete project",
151
+ "description": "Delete a project by its ID",
152
+ "tags": [],
153
+ "parameters": [
154
+ {
155
+ "name": "id",
156
+ "in": "path",
157
+ "required": true,
158
+ "schema": {
159
+ "type": "string"
160
+ }
161
+ }
162
+ ],
163
+ "responses": {
164
+ "default": {
165
+ "description": "default response",
166
+ "content": {
167
+ "application/json": {}
168
+ }
169
+ }
170
+ }
171
+ },
172
+ {
173
+ "path": "/api/v1/projects/{id}/activate",
174
+ "method": "PUT",
175
+ "operationId": "activateProject",
176
+ "summary": "Activate project",
177
+ "description": "Activate a project",
178
+ "tags": [],
179
+ "parameters": [
180
+ {
181
+ "name": "id",
182
+ "in": "path",
183
+ "required": true,
184
+ "schema": {
185
+ "type": "string"
186
+ }
187
+ }
188
+ ],
189
+ "responses": {
190
+ "default": {
191
+ "description": "default response",
192
+ "content": {
193
+ "application/json": {}
194
+ }
195
+ }
196
+ }
197
+ },
198
+ {
199
+ "path": "/api/v1/projects/{id}/deactivate",
200
+ "method": "PUT",
201
+ "operationId": "deactivateProject",
202
+ "summary": "Deactivate project",
203
+ "description": "Deactivate a project",
204
+ "tags": [],
205
+ "parameters": [
206
+ {
207
+ "name": "id",
208
+ "in": "path",
209
+ "required": true,
210
+ "schema": {
211
+ "type": "string"
212
+ }
213
+ }
214
+ ],
215
+ "responses": {
216
+ "default": {
217
+ "description": "default response",
218
+ "content": {
219
+ "application/json": {}
220
+ }
221
+ }
222
+ }
223
+ },
224
+ {
225
+ "path": "/api/v1/projects/{id}/copy",
226
+ "method": "POST",
227
+ "operationId": "copy",
228
+ "summary": "Copy project",
229
+ "description": "Copy a project",
230
+ "tags": [],
231
+ "parameters": [
232
+ {
233
+ "name": "id",
234
+ "in": "path",
235
+ "required": true,
236
+ "schema": {
237
+ "type": "string"
238
+ }
239
+ }
240
+ ],
241
+ "responses": {
242
+ "default": {
243
+ "description": "default response",
244
+ "content": {
245
+ "application/json": {}
246
+ }
247
+ }
248
+ }
249
+ },
250
+ {
251
+ "path": "/api/v1/projects/{id}/export",
252
+ "method": "GET",
253
+ "operationId": "exportData",
254
+ "summary": "Export project data",
255
+ "description": "Export project data",
256
+ "tags": [],
257
+ "parameters": [
258
+ {
259
+ "name": "id",
260
+ "in": "path",
261
+ "required": true,
262
+ "schema": {
263
+ "type": "string"
264
+ }
265
+ }
266
+ ],
267
+ "responses": {
268
+ "default": {
269
+ "description": "default response",
270
+ "content": {
271
+ "application/json": {}
272
+ }
273
+ }
274
+ }
275
+ },
276
+ {
277
+ "path": "/api/v1/projects/{id}/recommendations",
278
+ "method": "GET",
279
+ "operationId": "getRecommendationsByProjectId",
280
+ "summary": "Get project recommendations by ID",
281
+ "description": "Get recommendations for a specific project",
282
+ "tags": [],
283
+ "parameters": [
284
+ {
285
+ "name": "id",
286
+ "in": "path",
287
+ "required": true,
288
+ "schema": {
289
+ "type": "string"
290
+ }
291
+ },
292
+ {
293
+ "name": "status",
294
+ "in": "query",
295
+ "schema": {
296
+ "pattern": "NotCompleted|In-Progress|Delay|Completed|All",
297
+ "type": "string"
298
+ }
299
+ }
300
+ ],
301
+ "responses": {
302
+ "default": {
303
+ "description": "default response",
304
+ "content": {
305
+ "application/json": {}
306
+ }
307
+ }
308
+ }
309
+ },
310
+ {
311
+ "path": "/api/v1/projects/import",
312
+ "method": "POST",
313
+ "operationId": "importData",
314
+ "summary": "Import project data",
315
+ "description": "Import project data from a file",
316
+ "tags": [],
317
+ "parameters": [],
318
+ "requestBody": {
319
+ "content": {
320
+ "multipart/form-data": {
321
+ "schema": {
322
+ "type": "object",
323
+ "properties": {
324
+ "file": {
325
+ "$ref": "#/components/schemas/FormDataContentDisposition"
326
+ }
327
+ }
328
+ }
329
+ }
330
+ }
331
+ },
332
+ "responses": {
333
+ "default": {
334
+ "description": "default response",
335
+ "content": {
336
+ "application/json": {}
337
+ }
338
+ }
339
+ }
340
+ }
341
+ ]
342
+ }