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,137 @@
1
+ {
2
+ "category": "Templates",
3
+ "version": "v2",
4
+ "description": "템플릿 관리 관련 API",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/template/action-status",
8
+ "method": "GET",
9
+ "operationId": "getAll",
10
+ "summary": "Get all action status templates",
11
+ "description": "Retrieves all action status templates",
12
+ "tags": [],
13
+ "parameters": [],
14
+ "responses": {
15
+ "default": {
16
+ "description": "default response",
17
+ "content": {
18
+ "application/json": {}
19
+ }
20
+ }
21
+ }
22
+ },
23
+ {
24
+ "path": "/api/v2/template/action-status",
25
+ "method": "POST",
26
+ "operationId": "create_3",
27
+ "summary": "Create action status template",
28
+ "description": "Creates a new action status template",
29
+ "tags": [],
30
+ "parameters": [],
31
+ "requestBody": {
32
+ "content": {
33
+ "*/*": {
34
+ "schema": {
35
+ "$ref": "#/components/schemas/ActionStatusSaveDTO"
36
+ }
37
+ }
38
+ }
39
+ },
40
+ "responses": {
41
+ "default": {
42
+ "description": "default response",
43
+ "content": {
44
+ "*/*": {}
45
+ }
46
+ }
47
+ }
48
+ },
49
+ {
50
+ "path": "/api/v2/template/action-status/{id}",
51
+ "method": "GET",
52
+ "operationId": "getById",
53
+ "summary": "Get action status template by ID",
54
+ "description": "Retrieves a specific action status template by its ID",
55
+ "tags": [],
56
+ "parameters": [
57
+ {
58
+ "name": "id",
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/template/action-status/{id}",
77
+ "method": "PUT",
78
+ "operationId": "update_3",
79
+ "summary": "Update action status template",
80
+ "description": "Updates an existing action status template",
81
+ "tags": [],
82
+ "parameters": [
83
+ {
84
+ "name": "id",
85
+ "in": "path",
86
+ "required": true,
87
+ "schema": {
88
+ "type": "string"
89
+ }
90
+ }
91
+ ],
92
+ "requestBody": {
93
+ "content": {
94
+ "*/*": {
95
+ "schema": {
96
+ "$ref": "#/components/schemas/ActionStatusSaveDTO"
97
+ }
98
+ }
99
+ }
100
+ },
101
+ "responses": {
102
+ "default": {
103
+ "description": "default response",
104
+ "content": {
105
+ "*/*": {}
106
+ }
107
+ }
108
+ }
109
+ },
110
+ {
111
+ "path": "/api/v2/template/action-status/{id}",
112
+ "method": "DELETE",
113
+ "operationId": "delete_3",
114
+ "summary": "Delete action status template",
115
+ "description": "Deletes an action status template",
116
+ "tags": [],
117
+ "parameters": [
118
+ {
119
+ "name": "id",
120
+ "in": "path",
121
+ "required": true,
122
+ "schema": {
123
+ "type": "string"
124
+ }
125
+ }
126
+ ],
127
+ "responses": {
128
+ "default": {
129
+ "description": "default response",
130
+ "content": {
131
+ "*/*": {}
132
+ }
133
+ }
134
+ }
135
+ }
136
+ ]
137
+ }
@@ -0,0 +1,61 @@
1
+ {
2
+ "category": "User Management",
3
+ "version": "v2",
4
+ "description": "사용자 관리 관련 API",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/users/{userId}",
8
+ "method": "GET",
9
+ "operationId": "get_4",
10
+ "summary": "Get User by ID",
11
+ "description": "Retrieve user information by user ID",
12
+ "tags": ["User Management"],
13
+ "parameters": [
14
+ {
15
+ "name": "userId",
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
+ "application/json": {}
29
+ }
30
+ }
31
+ }
32
+ },
33
+ {
34
+ "path": "/api/v2/users/my/project-join-requests",
35
+ "method": "GET",
36
+ "operationId": "listMyProjectJoinRequests",
37
+ "summary": "List My Project Join Requests",
38
+ "description": "Retrieve current user's project join requests",
39
+ "tags": ["User Management"],
40
+ "parameters": [
41
+ {
42
+ "name": "projectId",
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
+ }