gobananas-mcp 1.0.3 → 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.
Files changed (2) hide show
  1. package/README.md +12 -18
  2. 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,29 +54,13 @@ Add to `.cursor/mcp.json`:
44
54
  }
45
55
  ```
46
56
 
47
- ### Claude Code
48
-
49
- Add to `.mcp.json` in your project root or `~/.claude.json` for all projects:
50
-
51
- ```json
52
- {
53
- "mcpServers": {
54
- "go-bananas": {
55
- "command": "npx",
56
- "args": ["-y", "gobananas-mcp"],
57
- "env": {
58
- "GO_BANANAS_SERVER_URL": "https://gobananasai.com",
59
- "GO_BANANAS_MCP_TRANSPORT": "streamable-http"
60
- }
61
- }
62
- }
63
- }
64
- ```
57
+ You can also pass the API key as a CLI argument: `npx gobananas-mcp --api-key sk_live_your_api_key_here`
65
58
 
66
59
  ## Environment Variables
67
60
 
68
61
  | Variable | Default | Description |
69
62
  |----------|---------|-------------|
63
+ | `GO_BANANAS_API_KEY` | — | Your API key (required) |
70
64
  | `GO_BANANAS_SERVER_URL` | `https://gobananasai.com` | Server URL |
71
65
  | `GO_BANANAS_MCP_TRANSPORT` | `streamable-http` | Transport protocol |
72
66
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gobananas-mcp",
3
- "version": "1.0.3",
3
+ "version": "1.0.7",
4
4
  "description": "MCP server for Go Bananas AI image generation — use with Claude Desktop, Cursor, Claude Code, Codex",
5
5
  "type": "module",
6
6
  "bin": {