fmea-api-mcp-server 1.0.1 → 1.0.2

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 (2) hide show
  1. package/README.md +2 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -71,16 +71,13 @@ When the package is published to NPM:
71
71
  "args": [
72
72
  "-y",
73
73
  "fmea-api-mcp-server"
74
- ],
75
- "env": {
76
- "ENDPOINTS_DIR": "/absolute/path/to/fmea-api-mcp/endpoints"
77
- }
74
+ ]
78
75
  }
79
76
  }
80
77
  }
81
78
  ```
82
79
 
83
- - `ENDPOINTS_DIR`: The absolute path to the directory containing API specification files. The default is `../endpoints` (relative path from mcp-server), but it's recommended to set this explicitly when using npx.
80
+ - **Note**: The `endpoints` directory containing API specifications is included in the package, so no extra configuration is needed.
84
81
 
85
82
  ## Features
86
83
  - **Resources**: Can read JSON files in the `endpoints` folder.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmea-api-mcp-server",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server for serving API documentation from endpoints directory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",