fmea-api-mcp-server 1.0.1 → 1.0.3

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 +10 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -37,6 +37,14 @@ After publishing, you can run it from anywhere using `npx`:
37
37
  npx -y fmea-api-mcp-server
38
38
  ```
39
39
 
40
+ ## Claude CLI (Quick Setup)
41
+
42
+ If you are using the [Claude CLI](https://github.com/anthropics/claude-code), you can add this server with a single command:
43
+
44
+ ```bash
45
+ claude mcp add --transport stdio -- npx -y fmea-api-mcp-server
46
+ ```
47
+
40
48
  ## Client Configuration (Load Configuration)
41
49
 
42
50
  To use this server with clients like Claude Desktop or Zed, add the following to your configuration file.
@@ -71,16 +79,13 @@ When the package is published to NPM:
71
79
  "args": [
72
80
  "-y",
73
81
  "fmea-api-mcp-server"
74
- ],
75
- "env": {
76
- "ENDPOINTS_DIR": "/absolute/path/to/fmea-api-mcp/endpoints"
77
- }
82
+ ]
78
83
  }
79
84
  }
80
85
  }
81
86
  ```
82
87
 
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.
88
+ - **Note**: The `endpoints` directory containing API specifications is included in the package, so no extra configuration is needed.
84
89
 
85
90
  ## Features
86
91
  - **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.3",
4
4
  "description": "MCP server for serving API documentation from endpoints directory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",