@velt-js/mcp-installer 0.1.0 → 0.2.0
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 +14 -0
- package/package.json +1 -1
- package/src/utils/plan-formatter.js +240 -1391
- package/src/utils/use-client.js +10 -0
package/README.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
An MCP (Model Context Protocol) server that provides AI-assisted installation of Velt collaboration features into React and Next.js projects.
|
|
4
4
|
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Install the package via npm:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @velt-js/mcp-installer
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or run it directly with `npx` (no install required):
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx -y @velt-js/mcp-installer
|
|
17
|
+
```
|
|
18
|
+
|
|
5
19
|
## Setup
|
|
6
20
|
|
|
7
21
|
Add the Velt MCP server to your coding IDE. Pick the section that matches your editor.
|
package/package.json
CHANGED