@gapi/gcli 1.8.195 → 1.8.197
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 +16 -1
- package/package.json +1 -1
- package/release/index.js +840 -780
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
### Installation
|
|
2
2
|
|
|
3
3
|
```bash
|
|
4
|
-
curl -L "https://github.com/Stradivario/gapi/releases/download/v1.8.
|
|
4
|
+
curl -L "https://github.com/Stradivario/gapi/releases/download/v1.8.195/gcli-linux" -o ~/.local/bin/gcli
|
|
5
5
|
```
|
|
6
6
|
|
|
7
7
|
```bash
|
|
@@ -10,6 +10,8 @@ chmod +x ~/.local/bin/gcli
|
|
|
10
10
|
|
|
11
11
|
Use MCP tool in Claude or any other tool that accepts mcp servers config
|
|
12
12
|
|
|
13
|
+
The MCP server only works in nodejs bigger than 20 it works perfect in 24
|
|
14
|
+
|
|
13
15
|
```json
|
|
14
16
|
{
|
|
15
17
|
"mcpServers": {
|
|
@@ -23,6 +25,19 @@ Use MCP tool in Claude or any other tool that accepts mcp servers config
|
|
|
23
25
|
|
|
24
26
|
Using regular npm package installed globally `npm install @gapi/gcli -g`
|
|
25
27
|
|
|
28
|
+
```json
|
|
29
|
+
{
|
|
30
|
+
"mcpServers": {
|
|
31
|
+
"lambforge": {
|
|
32
|
+
"command": "npx",
|
|
33
|
+
"args": ["gcli", "mcp:start", "--url", "http://localhost:8000/mcp"]
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Using specific version of nodejs
|
|
40
|
+
|
|
26
41
|
```json
|
|
27
42
|
{
|
|
28
43
|
"mcpServers": {
|