fmea-api-mcp-server 1.1.71 → 1.1.72

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.71",
31
+ version: "1.1.72",
32
32
  }, {
33
33
  capabilities: {
34
34
  resources: {},
@@ -796,7 +796,7 @@
796
796
  "method": "GET",
797
797
  "operationId": "getSources",
798
798
  "summary": "Get node sources",
799
- "description": "Returns source metadata and available flat source payloads for a node in the FMM diagram. This hard-break contract does not expose popup option enums. FE knows nodeType before fetch and must render popup choices from request-time node context instead of response-only metadata. FE-owned internal/external ITEM save intent remains outside this source response and should be mapped to the existing typed save contract. The response can be cached by request context such as projectId, failureModeId, nodeType, sourceType, blockDiagramId, and objectTag without repeating popup option semantics already owned by FE. For non-process EFFECT, ITEM, and EXTERNAL_ITEM, BOM browse data remains lazy-loaded through /sources/bom while the response still distinguishes each node family through nodeType, editMode, manualEntryAllowed, and availableSourceTypes. For non-process STRESS, DESIGN, and PROCESS, the current contract follows legacy parity by exposing SYSTEM_DEFINITION only. ProjectType.PROCESS continues to use its separate PROJECT_REUSE-based contract. Supports SYSTEM_DEFINITION (flat items from managed conditions) and PROJECT_REUSE (flat items from existing project data). BOM sources are loaded via /sources/bom. Requests filtered with sourceType=BOM still return metadata only. When the node type is BOM-backed, this endpoint returns source metadata and an empty sources list until the BOM tree is requested separately.",
799
+ "description": "Returns source metadata and available flat source payloads for a node in the FMM diagram. This hard-break contract does not expose popup option enums. FE knows nodeType before fetch and must render popup choices from request-time node context instead of response-only metadata. FE-owned internal/external ITEM save intent remains outside this source response and should be mapped to the existing typed save contract. The response can be cached by request context such as projectId, failureModeId, nodeType, sourceType, blockDiagramId, and blockNodeId without repeating popup option semantics already owned by FE. For non-process EFFECT, ITEM, and EXTERNAL_ITEM, BOM browse data remains lazy-loaded through /sources/bom while the response still distinguishes each node family through nodeType, editMode, manualEntryAllowed, and availableSourceTypes. For non-process STRESS, DESIGN, and PROCESS, the current contract follows legacy parity by exposing SYSTEM_DEFINITION only. ProjectType.PROCESS continues to use its separate PROJECT_REUSE-based contract. Supports SYSTEM_DEFINITION (flat items from managed conditions) and PROJECT_REUSE (flat items from existing project data). BOM sources are loaded via /sources/bom. Requests filtered with sourceType=BOM still return metadata only. When the node type is BOM-backed, this endpoint returns source metadata and an empty sources list until the BOM tree is requested separately.",
800
800
  "tags": [
801
801
  "FMM Diagram"
802
802
  ],
@@ -1083,7 +1083,7 @@
1083
1083
  "method": "GET",
1084
1084
  "operationId": "getBomSource",
1085
1085
  "summary": "Get BOM source tree",
1086
- "description": "Returns BOM source tree data for ITEM, EXTERNAL_ITEM, and non-process EFFECT nodes. For non-process EFFECT, objectTag is used to return a popup-equivalent higher-item context projection with linked failure modes for the current node context rather than the current item's descendant BOM branch. The EFFECT payload keeps popup-visible higher-item labels on tree nodes and preserves linked failure-mode order for FE rendering. Tree data is lazy-loaded separately from flat /sources results and remains focused on browse payloads rather than FE popup option metadata. Only available for Design/FA/Equipment/FTA/CPlan projects.",
1086
+ "description": "Returns BOM source tree data for ITEM, EXTERNAL_ITEM, and non-process EFFECT nodes. For non-process EFFECT, blockNodeId is used to return a popup-equivalent higher-item context projection with linked failure modes for the current node context rather than the current item's descendant BOM branch. The EFFECT payload keeps popup-visible higher-item labels on tree nodes and preserves linked failure-mode order for FE rendering. Tree data is lazy-loaded separately from flat /sources results and remains focused on browse payloads rather than FE popup option metadata. Only available for Design/FA/Equipment/FTA/CPlan projects.",
1087
1087
  "tags": [
1088
1088
  "FMM Diagram"
1089
1089
  ],
@@ -1135,9 +1135,9 @@
1135
1135
  }
1136
1136
  },
1137
1137
  {
1138
- "name": "objectTag",
1138
+ "name": "blockNodeId",
1139
1139
  "in": "query",
1140
- "description": "Current object tag for EFFECT BOM requests",
1140
+ "description": "Current block node ID for EFFECT BOM requests (required for non-process EFFECT)",
1141
1141
  "schema": {
1142
1142
  "type": "string"
1143
1143
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmea-api-mcp-server",
3
- "version": "1.1.71",
3
+ "version": "1.1.72",
4
4
  "description": "MCP server for serving API documentation from endpoints directory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",