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.
Files changed (2) hide show
  1. package/README.md +11 -2
  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
- If you are using the [Claude CLI](https://github.com/anthropics/claude-code), you can add this server with a single command:
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)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmea-api-mcp-server",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "MCP server for serving API documentation from endpoints directory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",