fmea-api-mcp-server 1.0.2 → 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 +8 -0
  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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmea-api-mcp-server",
3
- "version": "1.0.2",
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",