fmea-api-mcp-server 1.0.2 → 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 +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,6 +37,23 @@ 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
|
+
### Option 1: Run with npx (Recommended)
|
|
43
|
+
NO installation required. Runs the latest version immediately.
|
|
44
|
+
|
|
45
|
+
```bash
|
|
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
|
|
55
|
+
```
|
|
56
|
+
|
|
40
57
|
## Client Configuration (Load Configuration)
|
|
41
58
|
|
|
42
59
|
To use this server with clients like Claude Desktop or Zed, add the following to your configuration file.
|