fmea-api-mcp-server 1.0.3 → 1.0.4
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/README.md +11 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,10 +39,19 @@ npx -y fmea-api-mcp-server
|
|
|
39
39
|
|
|
40
40
|
## Claude CLI (Quick Setup)
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
### Option 1: Run with npx (Recommended)
|
|
43
|
+
NO installation required. Runs the latest version immediately.
|
|
43
44
|
|
|
44
45
|
```bash
|
|
45
|
-
claude mcp add --transport stdio -- npx -y fmea-api-mcp-server
|
|
46
|
+
claude mcp add fmea-api --transport stdio -- npx -y fmea-api-mcp-server
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Option 2: Install Globally
|
|
50
|
+
If you prefer to install the package globally on your system:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
npm install -g fmea-api-mcp-server
|
|
54
|
+
claude mcp add fmea-api --transport stdio -- fmea-api-mcp-server
|
|
46
55
|
```
|
|
47
56
|
|
|
48
57
|
## Client Configuration (Load Configuration)
|