fmea-api-mcp-server 1.1.55 → 1.1.56

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.
package/dist/index.js CHANGED
@@ -28,7 +28,7 @@ class ApiDocsServer {
28
28
  constructor() {
29
29
  this.server = new Server({
30
30
  name: "api-docs-mcp",
31
- version: "1.1.55",
31
+ version: "1.1.56",
32
32
  }, {
33
33
  capabilities: {
34
34
  resources: {},
@@ -1869,6 +1869,450 @@
1869
1869
  }
1870
1870
  }
1871
1871
  }
1872
+ },
1873
+ {
1874
+ "path": "/api/v2/projects/groups/{groupId}",
1875
+ "method": "DELETE",
1876
+ "operationId": "deleteGroup_1",
1877
+ "summary": "Delete project group",
1878
+ "description": "Deletes every stored row for an owned project group.",
1879
+ "tags": [
1880
+ "Project Group"
1881
+ ],
1882
+ "parameters": [
1883
+ {
1884
+ "name": "groupId",
1885
+ "in": "path",
1886
+ "description": "Project group ID",
1887
+ "required": true,
1888
+ "schema": {
1889
+ "type": "integer",
1890
+ "format": "int32"
1891
+ }
1892
+ }
1893
+ ],
1894
+ "requestBody": null,
1895
+ "responses": {
1896
+ "default": {
1897
+ "description": "default response",
1898
+ "content": {
1899
+ "application/json": {}
1900
+ }
1901
+ }
1902
+ }
1903
+ },
1904
+ {
1905
+ "path": "/api/v2/projects/groups",
1906
+ "method": "GET",
1907
+ "operationId": "getGroups",
1908
+ "summary": "List project groups",
1909
+ "description": "Returns the authenticated user's project groups as flat DTOs. Each item contains group metadata and projectIds only. Empty-group placeholder rows are hidden from the response.",
1910
+ "tags": [
1911
+ "Project Group"
1912
+ ],
1913
+ "parameters": [],
1914
+ "requestBody": null,
1915
+ "responses": {
1916
+ "default": {
1917
+ "description": "default response",
1918
+ "content": {
1919
+ "application/json": {
1920
+ "schema": {
1921
+ "type": "array",
1922
+ "items": {
1923
+ "type": "object",
1924
+ "properties": {
1925
+ "id": {
1926
+ "type": "integer"
1927
+ },
1928
+ "name": {
1929
+ "type": "string"
1930
+ },
1931
+ "sortOrder": {
1932
+ "type": "integer"
1933
+ },
1934
+ "projectIds": {
1935
+ "type": "array",
1936
+ "items": {
1937
+ "type": "string"
1938
+ }
1939
+ }
1940
+ }
1941
+ }
1942
+ }
1943
+ }
1944
+ }
1945
+ }
1946
+ }
1947
+ },
1948
+ {
1949
+ "path": "/api/v2/projects/groups/{groupId}",
1950
+ "method": "PATCH",
1951
+ "operationId": "renameGroup",
1952
+ "summary": "Rename project group",
1953
+ "description": "Renames an existing project group owned by the authenticated user. The new name is applied to every stored row of the group, and duplicate names are rejected within the same user scope.",
1954
+ "tags": [
1955
+ "Project Group"
1956
+ ],
1957
+ "parameters": [
1958
+ {
1959
+ "name": "groupId",
1960
+ "in": "path",
1961
+ "description": "Project group ID",
1962
+ "required": true,
1963
+ "schema": {
1964
+ "type": "integer",
1965
+ "format": "int32"
1966
+ }
1967
+ }
1968
+ ],
1969
+ "requestBody": {
1970
+ "content": {
1971
+ "application/json": {
1972
+ "schema": {
1973
+ "required": [
1974
+ "name"
1975
+ ],
1976
+ "type": "object",
1977
+ "properties": {
1978
+ "name": {
1979
+ "type": "string"
1980
+ }
1981
+ }
1982
+ }
1983
+ }
1984
+ }
1985
+ },
1986
+ "responses": {
1987
+ "default": {
1988
+ "description": "default response",
1989
+ "content": {
1990
+ "application/json": {
1991
+ "schema": {
1992
+ "type": "object",
1993
+ "properties": {
1994
+ "id": {
1995
+ "type": "integer"
1996
+ },
1997
+ "name": {
1998
+ "type": "string"
1999
+ },
2000
+ "sortOrder": {
2001
+ "type": "integer"
2002
+ },
2003
+ "projectIds": {
2004
+ "type": "array",
2005
+ "items": {
2006
+ "type": "string"
2007
+ }
2008
+ }
2009
+ }
2010
+ }
2011
+ }
2012
+ }
2013
+ }
2014
+ }
2015
+ },
2016
+ {
2017
+ "path": "/api/v2/projects/groups",
2018
+ "method": "POST",
2019
+ "operationId": "createGroup_1",
2020
+ "summary": "Create project group",
2021
+ "description": "Creates a new project group for the authenticated user. The server assigns the next sort order in the user's list and stores an empty-group placeholder row. Duplicate names are rejected within the authenticated user's scope.",
2022
+ "tags": [
2023
+ "Project Group"
2024
+ ],
2025
+ "parameters": [],
2026
+ "requestBody": {
2027
+ "content": {
2028
+ "application/json": {
2029
+ "schema": {
2030
+ "required": [
2031
+ "name"
2032
+ ],
2033
+ "type": "object",
2034
+ "properties": {
2035
+ "name": {
2036
+ "type": "string"
2037
+ }
2038
+ }
2039
+ }
2040
+ }
2041
+ }
2042
+ },
2043
+ "responses": {
2044
+ "default": {
2045
+ "description": "default response",
2046
+ "content": {
2047
+ "application/json": {
2048
+ "schema": {
2049
+ "type": "object",
2050
+ "properties": {
2051
+ "id": {
2052
+ "type": "integer"
2053
+ },
2054
+ "name": {
2055
+ "type": "string"
2056
+ },
2057
+ "sortOrder": {
2058
+ "type": "integer"
2059
+ },
2060
+ "projectIds": {
2061
+ "type": "array",
2062
+ "items": {
2063
+ "type": "string"
2064
+ }
2065
+ }
2066
+ }
2067
+ }
2068
+ }
2069
+ }
2070
+ }
2071
+ }
2072
+ },
2073
+ {
2074
+ "path": "/api/v2/projects/groups",
2075
+ "method": "PUT",
2076
+ "operationId": "batchSaveGroups",
2077
+ "summary": "Batch save project groups",
2078
+ "description": "Persists the authenticated user's full project-group state in one request. The submitted list is treated as the final source of truth and may create new groups, rename existing groups, replace ordering, move project memberships, normalize empty groups to placeholder rows, and delete omitted owned groups.",
2079
+ "tags": [
2080
+ "Project Group"
2081
+ ],
2082
+ "parameters": [],
2083
+ "requestBody": {
2084
+ "content": {
2085
+ "application/json": {
2086
+ "schema": {
2087
+ "type": "object",
2088
+ "properties": {
2089
+ "groups": {
2090
+ "type": "array",
2091
+ "items": {
2092
+ "type": "object",
2093
+ "properties": {
2094
+ "id": {
2095
+ "type": "integer",
2096
+ "format": "int32"
2097
+ },
2098
+ "name": {
2099
+ "type": "string"
2100
+ },
2101
+ "sortOrder": {
2102
+ "type": "integer",
2103
+ "format": "int32"
2104
+ },
2105
+ "projectIds": {
2106
+ "type": "array",
2107
+ "items": {
2108
+ "type": "string"
2109
+ }
2110
+ }
2111
+ }
2112
+ }
2113
+ }
2114
+ }
2115
+ }
2116
+ }
2117
+ }
2118
+ },
2119
+ "responses": {
2120
+ "default": {
2121
+ "description": "default response",
2122
+ "content": {
2123
+ "application/json": {
2124
+ "schema": {
2125
+ "type": "array",
2126
+ "items": {
2127
+ "type": "object",
2128
+ "properties": {
2129
+ "id": {
2130
+ "type": "integer"
2131
+ },
2132
+ "name": {
2133
+ "type": "string"
2134
+ },
2135
+ "sortOrder": {
2136
+ "type": "integer"
2137
+ },
2138
+ "projectIds": {
2139
+ "type": "array",
2140
+ "items": {
2141
+ "type": "string"
2142
+ }
2143
+ }
2144
+ }
2145
+ }
2146
+ }
2147
+ }
2148
+ }
2149
+ }
2150
+ }
2151
+ },
2152
+ {
2153
+ "path": "/api/v2/projects/groups/order",
2154
+ "method": "PUT",
2155
+ "operationId": "reorderGroups",
2156
+ "summary": "Reorder project groups",
2157
+ "description": "Rewrites the authenticated user's project-group sort order. The request must contain the full owned group ID set exactly once, and the server normalizes the stored order to sequential values.",
2158
+ "tags": [
2159
+ "Project Group"
2160
+ ],
2161
+ "parameters": [],
2162
+ "requestBody": {
2163
+ "content": {
2164
+ "application/json": {
2165
+ "schema": {
2166
+ "required": [
2167
+ "groupIds"
2168
+ ],
2169
+ "type": "object",
2170
+ "properties": {
2171
+ "groupIds": {
2172
+ "type": "array",
2173
+ "items": {
2174
+ "type": "integer",
2175
+ "format": "int32"
2176
+ }
2177
+ }
2178
+ }
2179
+ }
2180
+ }
2181
+ }
2182
+ },
2183
+ "responses": {
2184
+ "default": {
2185
+ "description": "default response",
2186
+ "content": {
2187
+ "application/json": {
2188
+ "schema": {
2189
+ "type": "array",
2190
+ "items": {
2191
+ "type": "object",
2192
+ "properties": {
2193
+ "id": {
2194
+ "type": "integer"
2195
+ },
2196
+ "name": {
2197
+ "type": "string"
2198
+ },
2199
+ "sortOrder": {
2200
+ "type": "integer"
2201
+ },
2202
+ "projectIds": {
2203
+ "type": "array",
2204
+ "items": {
2205
+ "type": "string"
2206
+ }
2207
+ }
2208
+ }
2209
+ }
2210
+ }
2211
+ }
2212
+ }
2213
+ }
2214
+ }
2215
+ },
2216
+ {
2217
+ "path": "/api/v2/projects/groups/ungrouped/projects/{projectId}",
2218
+ "method": "PUT",
2219
+ "operationId": "ungroupProject",
2220
+ "summary": "Ungroup project",
2221
+ "description": "Removes the authenticated user's grouping membership for a project. If the source group becomes empty, a placeholder row is restored.",
2222
+ "tags": [
2223
+ "Project Group"
2224
+ ],
2225
+ "parameters": [
2226
+ {
2227
+ "name": "projectId",
2228
+ "in": "path",
2229
+ "description": "Project ID",
2230
+ "required": true,
2231
+ "schema": {
2232
+ "type": "string"
2233
+ }
2234
+ }
2235
+ ],
2236
+ "requestBody": null,
2237
+ "responses": {
2238
+ "default": {
2239
+ "description": "default response",
2240
+ "content": {
2241
+ "application/json": {}
2242
+ }
2243
+ }
2244
+ }
2245
+ },
2246
+ {
2247
+ "path": "/api/v2/projects/groups/{groupId}/projects",
2248
+ "method": "PUT",
2249
+ "operationId": "assignProjects",
2250
+ "summary": "Assign projects to group",
2251
+ "description": "Moves accessible projects into an owned target group. Source memberships are removed in the authenticated user's scope, target placeholder rows are cleared on first assignment, and emptied source groups are restored as placeholder-only groups.",
2252
+ "tags": [
2253
+ "Project Group"
2254
+ ],
2255
+ "parameters": [
2256
+ {
2257
+ "name": "groupId",
2258
+ "in": "path",
2259
+ "description": "Project group ID",
2260
+ "required": true,
2261
+ "schema": {
2262
+ "type": "integer",
2263
+ "format": "int32"
2264
+ }
2265
+ }
2266
+ ],
2267
+ "requestBody": {
2268
+ "content": {
2269
+ "application/json": {
2270
+ "schema": {
2271
+ "required": [
2272
+ "projectIds"
2273
+ ],
2274
+ "type": "object",
2275
+ "properties": {
2276
+ "projectIds": {
2277
+ "type": "array",
2278
+ "items": {
2279
+ "type": "string"
2280
+ }
2281
+ }
2282
+ }
2283
+ }
2284
+ }
2285
+ }
2286
+ },
2287
+ "responses": {
2288
+ "default": {
2289
+ "description": "default response",
2290
+ "content": {
2291
+ "application/json": {
2292
+ "schema": {
2293
+ "type": "object",
2294
+ "properties": {
2295
+ "id": {
2296
+ "type": "integer"
2297
+ },
2298
+ "name": {
2299
+ "type": "string"
2300
+ },
2301
+ "sortOrder": {
2302
+ "type": "integer"
2303
+ },
2304
+ "projectIds": {
2305
+ "type": "array",
2306
+ "items": {
2307
+ "type": "string"
2308
+ }
2309
+ }
2310
+ }
2311
+ }
2312
+ }
2313
+ }
2314
+ }
2315
+ }
1872
2316
  }
1873
2317
  ]
1874
2318
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmea-api-mcp-server",
3
- "version": "1.1.55",
3
+ "version": "1.1.56",
4
4
  "description": "MCP server for serving API documentation from endpoints directory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",