50c 3.0.4 → 3.0.6
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 +1 -1
- package/bin/50c.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -122,7 +122,7 @@ Add to your IDE's MCP config:
|
|
|
122
122
|
}
|
|
123
123
|
```
|
|
124
124
|
|
|
125
|
-
> **Note:** Using `50c@latest` ensures you always get the newest version. For stability, pin to a specific version (e.g., `50c@3.0.
|
|
125
|
+
> **Note:** Using `50c@latest` ensures you always get the newest version. For stability, pin to a specific version (e.g., `50c@3.0.6`).
|
|
126
126
|
|
|
127
127
|
## Config
|
|
128
128
|
|
package/bin/50c.js
CHANGED
|
@@ -771,15 +771,15 @@ function installMCP() {
|
|
|
771
771
|
},
|
|
772
772
|
'50c-vault': {
|
|
773
773
|
command: 'npx',
|
|
774
|
-
args: ['-y', '50c-vault@latest']
|
|
774
|
+
args: ['-y', '50c-vault@latest', '--mcp']
|
|
775
775
|
},
|
|
776
776
|
'playwright': {
|
|
777
777
|
command: 'npx',
|
|
778
|
-
args: ['-y', '@
|
|
778
|
+
args: ['-y', '@playwright/mcp@latest']
|
|
779
779
|
},
|
|
780
780
|
'filesystem': {
|
|
781
781
|
command: 'npx',
|
|
782
|
-
args: ['-y', '@
|
|
782
|
+
args: ['-y', '@modelcontextprotocol/server-filesystem@latest', home]
|
|
783
783
|
}
|
|
784
784
|
};
|
|
785
785
|
|