gobananas-mcp 1.0.4 → 1.0.7
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 +12 -28
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,14 @@ This is a thin wrapper around [`gobananas-cli`](https://www.npmjs.com/package/go
|
|
|
6
6
|
|
|
7
7
|
## Setup
|
|
8
8
|
|
|
9
|
+
### Claude Code (Recommended)
|
|
10
|
+
|
|
11
|
+
**One-command install** — run this in your terminal:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
claude mcp add go-bananas -e GO_BANANAS_API_KEY=sk_live_your_api_key_here -e GO_BANANAS_SERVER_URL=https://gobananasai.com -e GO_BANANAS_MCP_TRANSPORT=streamable-http -- npx -y gobananas-mcp
|
|
15
|
+
```
|
|
16
|
+
|
|
9
17
|
### Claude Desktop
|
|
10
18
|
|
|
11
19
|
Add to `claude_desktop_config.json`:
|
|
@@ -17,6 +25,7 @@ Add to `claude_desktop_config.json`:
|
|
|
17
25
|
"command": "npx",
|
|
18
26
|
"args": ["-y", "gobananas-mcp"],
|
|
19
27
|
"env": {
|
|
28
|
+
"GO_BANANAS_API_KEY": "sk_live_your_api_key_here",
|
|
20
29
|
"GO_BANANAS_SERVER_URL": "https://gobananasai.com",
|
|
21
30
|
"GO_BANANAS_MCP_TRANSPORT": "streamable-http"
|
|
22
31
|
}
|
|
@@ -36,6 +45,7 @@ Add to `.cursor/mcp.json`:
|
|
|
36
45
|
"command": "npx",
|
|
37
46
|
"args": ["-y", "gobananas-mcp"],
|
|
38
47
|
"env": {
|
|
48
|
+
"GO_BANANAS_API_KEY": "sk_live_your_api_key_here",
|
|
39
49
|
"GO_BANANAS_SERVER_URL": "https://gobananasai.com",
|
|
40
50
|
"GO_BANANAS_MCP_TRANSPORT": "streamable-http"
|
|
41
51
|
}
|
|
@@ -44,39 +54,13 @@ Add to `.cursor/mcp.json`:
|
|
|
44
54
|
}
|
|
45
55
|
```
|
|
46
56
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
**One-command install** — run this in your terminal:
|
|
50
|
-
|
|
51
|
-
```bash
|
|
52
|
-
# For all projects (user-level)
|
|
53
|
-
claude mcp add go-bananas -s user -e GO_BANANAS_SERVER_URL=https://gobananasai.com -e GO_BANANAS_MCP_TRANSPORT=streamable-http -- npx -y gobananas-mcp
|
|
54
|
-
|
|
55
|
-
# For current project only
|
|
56
|
-
claude mcp add go-bananas -s project -e GO_BANANAS_SERVER_URL=https://gobananasai.com -e GO_BANANAS_MCP_TRANSPORT=streamable-http -- npx -y gobananas-mcp
|
|
57
|
-
```
|
|
58
|
-
|
|
59
|
-
**Or manually** — add to `.mcp.json` in your project root or `~/.claude.json` for all projects:
|
|
60
|
-
|
|
61
|
-
```json
|
|
62
|
-
{
|
|
63
|
-
"mcpServers": {
|
|
64
|
-
"go-bananas": {
|
|
65
|
-
"command": "npx",
|
|
66
|
-
"args": ["-y", "gobananas-mcp"],
|
|
67
|
-
"env": {
|
|
68
|
-
"GO_BANANAS_SERVER_URL": "https://gobananasai.com",
|
|
69
|
-
"GO_BANANAS_MCP_TRANSPORT": "streamable-http"
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
```
|
|
57
|
+
You can also pass the API key as a CLI argument: `npx gobananas-mcp --api-key sk_live_your_api_key_here`
|
|
75
58
|
|
|
76
59
|
## Environment Variables
|
|
77
60
|
|
|
78
61
|
| Variable | Default | Description |
|
|
79
62
|
|----------|---------|-------------|
|
|
63
|
+
| `GO_BANANAS_API_KEY` | — | Your API key (required) |
|
|
80
64
|
| `GO_BANANAS_SERVER_URL` | `https://gobananasai.com` | Server URL |
|
|
81
65
|
| `GO_BANANAS_MCP_TRANSPORT` | `streamable-http` | Transport protocol |
|
|
82
66
|
|