fmea-api-mcp-server 1.0.4 → 1.0.5

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.
Files changed (34) hide show
  1. package/README.md +3 -1
  2. package/dist/index.js +76 -5
  3. package/endpoints/README.md +40 -0
  4. package/endpoints/v1/projects/core.json +156 -0
  5. package/endpoints/v1/projects/data.json +64 -0
  6. package/endpoints/v1/projects/lifecycle.json +85 -0
  7. package/endpoints/v1/projects/recommendations.json +58 -0
  8. package/endpoints/v2/worksheets/excel.json +161 -0
  9. package/endpoints/v2/{worksheets.json → worksheets/management.json} +2 -183
  10. package/endpoints/v2/worksheets/templates.json +34 -0
  11. package/package.json +1 -1
  12. package/endpoints/v1/projects.json +0 -342
  13. /package/endpoints/v1/{authentication.json → authentication/core.json} +0 -0
  14. /package/endpoints/v1/{block-diagrams.json → block-diagrams/core.json} +0 -0
  15. /package/endpoints/v1/{divisions.json → divisions/core.json} +0 -0
  16. /package/endpoints/v1/{failure-modes.json → failure-modes/core.json} +0 -0
  17. /package/endpoints/v1/{files.json → files/core.json} +0 -0
  18. /package/endpoints/v1/{fta.json → fta/core.json} +0 -0
  19. /package/endpoints/v1/{knowledge-base.json → knowledge-base/core.json} +0 -0
  20. /package/endpoints/v1/{synonyms.json → synonyms/core.json} +0 -0
  21. /package/endpoints/v1/{terms.json → terms/core.json} +0 -0
  22. /package/endpoints/v1/{users.json → users/core.json} +0 -0
  23. /package/endpoints/v1/{worksheets.json → worksheets/core.json} +0 -0
  24. /package/endpoints/v2/{api-keys.json → api-keys/core.json} +0 -0
  25. /package/endpoints/v2/{block-diagrams.json → block-diagrams/core.json} +0 -0
  26. /package/endpoints/v2/{divisions.json → divisions/core.json} +0 -0
  27. /package/endpoints/v2/{documents.json → documents/core.json} +0 -0
  28. /package/endpoints/v2/{failure-modes.json → failure-modes/core.json} +0 -0
  29. /package/endpoints/v2/{files.json → files/core.json} +0 -0
  30. /package/endpoints/v2/{fourm.json → fourm/core.json} +0 -0
  31. /package/endpoints/v2/{projects.json → projects/core.json} +0 -0
  32. /package/endpoints/v2/{system.json → system/core.json} +0 -0
  33. /package/endpoints/v2/{templates.json → templates/core.json} +0 -0
  34. /package/endpoints/v2/{users.json → users/core.json} +0 -0
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "category": "Worksheets",
3
3
  "version": "v2",
4
- "description": "워크시트 관련 API",
4
+ "description": "Worksheet Management Operations",
5
5
  "endpoints": [
6
6
  {
7
7
  "path": "/api/v2/projects/{projectId}/worksheets",
@@ -344,187 +344,6 @@
344
344
  }
345
345
  },
346
346
  "operationId": "saveByFailureMode"
347
- },
348
- {
349
- "path": "/api/v2/projects/{projectId}/worksheet-excel/{uuid}",
350
- "method": "PUT",
351
- "summary": "Update worksheet Excel",
352
- "description": "Update an existing worksheet Excel file",
353
- "tags": [],
354
- "parameters": [
355
- {
356
- "name": "projectId",
357
- "in": "path",
358
- "required": true,
359
- "schema": {
360
- "type": "string"
361
- }
362
- },
363
- {
364
- "name": "uuid",
365
- "in": "path",
366
- "required": true,
367
- "schema": {
368
- "type": "string"
369
- }
370
- }
371
- ],
372
- "requestBody": {
373
- "content": {
374
- "application/json": {
375
- "schema": {
376
- "$ref": "#/components/schemas/WorksheetExcelSaveDTO"
377
- }
378
- }
379
- }
380
- },
381
- "responses": {
382
- "default": {
383
- "description": "default response",
384
- "content": {
385
- "*/*": {}
386
- }
387
- }
388
- },
389
- "operationId": "update_4"
390
- },
391
- {
392
- "path": "/api/v2/projects/{projectId}/worksheet-excel/{uuid}",
393
- "method": "POST",
394
- "summary": "Add worksheet Excel",
395
- "description": "Add a new worksheet Excel file",
396
- "tags": [],
397
- "parameters": [
398
- {
399
- "name": "projectId",
400
- "in": "path",
401
- "required": true,
402
- "schema": {
403
- "type": "string"
404
- }
405
- },
406
- {
407
- "name": "uuid",
408
- "in": "path",
409
- "required": true,
410
- "schema": {
411
- "type": "string"
412
- }
413
- }
414
- ],
415
- "requestBody": {
416
- "content": {
417
- "application/json": {
418
- "schema": {
419
- "$ref": "#/components/schemas/WorksheetExcelSaveDTO"
420
- }
421
- }
422
- }
423
- },
424
- "responses": {
425
- "default": {
426
- "description": "default response",
427
- "content": {
428
- "*/*": {}
429
- }
430
- }
431
- },
432
- "operationId": "add"
433
- },
434
- {
435
- "path": "/api/v2/projects/{projectId}/worksheet-excel/{reportNoSimple}",
436
- "method": "GET",
437
- "summary": "Get worksheet Excel download link",
438
- "description": "Retrieve download link for a worksheet Excel file",
439
- "tags": [],
440
- "parameters": [
441
- {
442
- "name": "projectId",
443
- "in": "path",
444
- "required": true,
445
- "schema": {
446
- "type": "string"
447
- }
448
- },
449
- {
450
- "name": "reportNoSimple",
451
- "in": "path",
452
- "required": true,
453
- "schema": {
454
- "$ref": "#/components/schemas/ReportNoSetDTO"
455
- }
456
- }
457
- ],
458
- "operationId": "getDownloadLink_1",
459
- "responses": {
460
- "default": {
461
- "description": "default response",
462
- "content": {
463
- "*/*": {}
464
- }
465
- }
466
- }
467
- },
468
- {
469
- "path": "/api/v2/projects/{projectId}/worksheet-excel/{uuid}/metadata",
470
- "method": "GET",
471
- "summary": "Get worksheet Excel metadata",
472
- "description": "Retrieve metadata for a worksheet Excel file",
473
- "tags": [],
474
- "parameters": [
475
- {
476
- "name": "projectId",
477
- "in": "path",
478
- "required": true,
479
- "schema": {
480
- "type": "string"
481
- }
482
- },
483
- {
484
- "name": "uuid",
485
- "in": "path",
486
- "required": true,
487
- "schema": {
488
- "type": "string"
489
- }
490
- }
491
- ],
492
- "operationId": "getMetadata",
493
- "responses": {
494
- "default": {
495
- "description": "default response",
496
- "content": {
497
- "*/*": {}
498
- }
499
- }
500
- }
501
- },
502
- {
503
- "path": "/api/v2/worksheet-templates/{id}/headers",
504
- "method": "GET",
505
- "summary": "Get worksheet template headers",
506
- "description": "Retrieve headers for a specific worksheet template",
507
- "tags": [],
508
- "parameters": [
509
- {
510
- "name": "id",
511
- "in": "path",
512
- "required": true,
513
- "schema": {
514
- "type": "integer",
515
- "format": "int32"
516
- }
517
- }
518
- ],
519
- "operationId": "getHeaders_1",
520
- "responses": {
521
- "default": {
522
- "description": "default response",
523
- "content": {
524
- "application/json": {}
525
- }
526
- }
527
- }
528
347
  }
529
348
  ]
530
- }
349
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "category": "Worksheets",
3
+ "version": "v2",
4
+ "description": "Worksheet Template Operations",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/worksheet-templates/{id}/headers",
8
+ "method": "GET",
9
+ "summary": "Get worksheet template headers",
10
+ "description": "Retrieve headers for a specific worksheet template",
11
+ "tags": [],
12
+ "parameters": [
13
+ {
14
+ "name": "id",
15
+ "in": "path",
16
+ "required": true,
17
+ "schema": {
18
+ "type": "integer",
19
+ "format": "int32"
20
+ }
21
+ }
22
+ ],
23
+ "operationId": "getHeaders_1",
24
+ "responses": {
25
+ "default": {
26
+ "description": "default response",
27
+ "content": {
28
+ "application/json": {}
29
+ }
30
+ }
31
+ }
32
+ }
33
+ ]
34
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmea-api-mcp-server",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "MCP server for serving API documentation from endpoints directory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,342 +0,0 @@
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
- }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes