ring-skills-mcp 1.0.1 → 1.0.2

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 +20 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -28,7 +28,25 @@ npm run build
28
28
 
29
29
  Add the following MCP configuration in Cursor settings:
30
30
 
31
- ### Option 1: Run with Node
31
+ ### Option 1: Run with npx (Recommended)
32
+
33
+ ```json
34
+ {
35
+ "mcpServers": {
36
+ "ring-skills-mcp": {
37
+ "command": "npx",
38
+ "args": ["ring-skills-mcp@latest"],
39
+ "env": {
40
+ "SKILLS_API_HOST": "http://your-api-host:8000",
41
+ "SKILLS_REPO": "your-org/skills-repo",
42
+ "SKILLS_AUTH_TOKEN": "your-auth-token-here"
43
+ }
44
+ }
45
+ }
46
+ }
47
+ ```
48
+
49
+ ### Option 2: Run with Node
32
50
 
33
51
  ```json
34
52
  {
@@ -46,7 +64,7 @@ Add the following MCP configuration in Cursor settings:
46
64
  }
47
65
  ```
48
66
 
49
- ### Option 2: Run with npx (development mode)
67
+ ### Option 3: Run with npx (development mode)
50
68
 
51
69
  ```json
52
70
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ring-skills-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "MCP service for fetching and installing company Skills",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",