fmea-api-mcp-server 1.1.40 → 1.1.41

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.40",
31
+ version: "1.1.41",
32
32
  }, {
33
33
  capabilities: {
34
34
  resources: {},
@@ -162,6 +162,92 @@
162
162
  }
163
163
  }
164
164
  },
165
+ "comparison": {
166
+ "type": "object",
167
+ "properties": {
168
+ "effectCandidates": {
169
+ "type": "array",
170
+ "items": {
171
+ "type": "object",
172
+ "properties": {
173
+ "candidateId": {
174
+ "type": "string"
175
+ },
176
+ "projectId": {
177
+ "type": "string"
178
+ },
179
+ "typeKey": {
180
+ "type": "string"
181
+ },
182
+ "name": {
183
+ "type": "string"
184
+ },
185
+ "typedName": {
186
+ "type": "string"
187
+ },
188
+ "score": {
189
+ "type": "number",
190
+ "format": "double"
191
+ }
192
+ }
193
+ }
194
+ },
195
+ "causeCandidates": {
196
+ "type": "array",
197
+ "items": {
198
+ "type": "object",
199
+ "properties": {
200
+ "candidateId": {
201
+ "type": "string"
202
+ },
203
+ "projectId": {
204
+ "type": "string"
205
+ },
206
+ "typeKey": {
207
+ "type": "string"
208
+ },
209
+ "name": {
210
+ "type": "string"
211
+ },
212
+ "typedName": {
213
+ "type": "string"
214
+ },
215
+ "score": {
216
+ "type": "number",
217
+ "format": "double"
218
+ }
219
+ }
220
+ }
221
+ },
222
+ "factorCandidates": {
223
+ "type": "array",
224
+ "items": {
225
+ "type": "object",
226
+ "properties": {
227
+ "candidateId": {
228
+ "type": "string"
229
+ },
230
+ "projectId": {
231
+ "type": "string"
232
+ },
233
+ "typeKey": {
234
+ "type": "string"
235
+ },
236
+ "name": {
237
+ "type": "string"
238
+ },
239
+ "typedName": {
240
+ "type": "string"
241
+ },
242
+ "score": {
243
+ "type": "number",
244
+ "format": "double"
245
+ }
246
+ }
247
+ }
248
+ }
249
+ }
250
+ },
165
251
  "page": {
166
252
  "type": "integer"
167
253
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmea-api-mcp-server",
3
- "version": "1.1.40",
3
+ "version": "1.1.41",
4
4
  "description": "MCP server for serving API documentation from endpoints directory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",