gobananas-mcp 1.0.7 → 1.0.8

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 +58 -13
  2. package/package.json +9 -3
package/README.md CHANGED
@@ -1,22 +1,47 @@
1
1
  # gobananas-mcp
2
2
 
3
- MCP STDIO proxy for [Go Bananas](https://gobananasai.com) AI image generation. Connects MCP clients (Claude Desktop, Cursor, Claude Code, Codex) to the Go Bananas server.
3
+ MCP server for [Go Bananas](https://gobananasai.com) AI image generation. Connects MCP clients (Claude Desktop, Claude Code, Cursor, VS Code, Codex) to the Go Bananas server.
4
4
 
5
- This is a thin wrapper around [`gobananas-cli`](https://www.npmjs.com/package/gobananas-cli) that provides the `gobananas-mcp` command for zero-install MCP setup.
5
+ **42 tools** for image generation, conversational editing, character consistency, product marketing, style presets, and analytics — powered by Google Gemini.
6
6
 
7
- ## Setup
7
+ ## Quick Start
8
8
 
9
- ### Claude Code (Recommended)
9
+ ### Claude Desktop / claude.ai (Easiest — Remote Connector)
10
10
 
11
- **One-command install** run this in your terminal:
11
+ No installation needed. Works on desktop, web, and mobile:
12
+
13
+ 1. Go to **Settings > Connectors > Add custom connector**
14
+ 2. Enter URL: `https://gobananasai.com/mcp`
15
+ 3. Authenticate with your Go Bananas account
16
+
17
+ That's it. All 42 tools are available immediately.
18
+
19
+ ### Claude Code (One Command)
20
+
21
+ ```bash
22
+ claude mcp add go-bananas \
23
+ -e GO_BANANAS_API_KEY=sk_live_your_api_key \
24
+ -e GO_BANANAS_SERVER_URL=https://gobananasai.com \
25
+ -e GO_BANANAS_MCP_TRANSPORT=streamable-http \
26
+ -- npx -y gobananas-mcp
27
+ ```
28
+
29
+ Add `-s user` to install for all projects.
30
+
31
+ ### Universal Install (9+ Clients)
32
+
33
+ Works across Claude, Cursor, VS Code, Gemini CLI, and more:
12
34
 
13
35
  ```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
36
+ npx add-mcp https://gobananasai.com/mcp
15
37
  ```
16
38
 
17
- ### Claude Desktop
39
+ ### Claude Desktop (Local STDIO)
18
40
 
19
- Add to `claude_desktop_config.json`:
41
+ If you prefer a local proxy instead of the remote connector, add to your config file:
42
+
43
+ - **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
44
+ - **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
20
45
 
21
46
  ```json
22
47
  {
@@ -25,7 +50,7 @@ Add to `claude_desktop_config.json`:
25
50
  "command": "npx",
26
51
  "args": ["-y", "gobananas-mcp"],
27
52
  "env": {
28
- "GO_BANANAS_API_KEY": "sk_live_your_api_key_here",
53
+ "GO_BANANAS_API_KEY": "sk_live_your_api_key",
29
54
  "GO_BANANAS_SERVER_URL": "https://gobananasai.com",
30
55
  "GO_BANANAS_MCP_TRANSPORT": "streamable-http"
31
56
  }
@@ -34,6 +59,8 @@ Add to `claude_desktop_config.json`:
34
59
  }
35
60
  ```
36
61
 
62
+ Restart Claude Desktop after saving.
63
+
37
64
  ### Cursor
38
65
 
39
66
  Add to `.cursor/mcp.json`:
@@ -45,7 +72,7 @@ Add to `.cursor/mcp.json`:
45
72
  "command": "npx",
46
73
  "args": ["-y", "gobananas-mcp"],
47
74
  "env": {
48
- "GO_BANANAS_API_KEY": "sk_live_your_api_key_here",
75
+ "GO_BANANAS_API_KEY": "sk_live_your_api_key",
49
76
  "GO_BANANAS_SERVER_URL": "https://gobananasai.com",
50
77
  "GO_BANANAS_MCP_TRANSPORT": "streamable-http"
51
78
  }
@@ -54,19 +81,36 @@ Add to `.cursor/mcp.json`:
54
81
  }
55
82
  ```
56
83
 
57
- You can also pass the API key as a CLI argument: `npx gobananas-mcp --api-key sk_live_your_api_key_here`
84
+ ### Global Install
85
+
86
+ ```bash
87
+ npm install -g gobananas-mcp
88
+ ```
89
+
90
+ Then use `"command": "gobananas-mcp"` without the `args` field.
91
+
92
+ ## What You Can Do
93
+
94
+ | Category | Tools | Examples |
95
+ |----------|-------|---------|
96
+ | **Generate** | `generate_image`, `batch_generate` | Create images from text prompts |
97
+ | **Edit** | `edit_image`, `continue_editing` | "add clouds", "make it brighter" |
98
+ | **Characters** | `create_character`, `generate_with_character` | Consistent characters across scenes |
99
+ | **Products** | `create_product_reference`, `generate_with_product` | Marketing images with real products |
100
+ | **Styles** | `create_style_preset`, `list_style_presets` | Reusable brand templates |
101
+ | **Analytics** | `check_quota`, `get_usage_stats` | Usage tracking and quota management |
58
102
 
59
103
  ## Environment Variables
60
104
 
61
105
  | Variable | Default | Description |
62
106
  |----------|---------|-------------|
63
- | `GO_BANANAS_API_KEY` | — | Your API key (required) |
107
+ | `GO_BANANAS_API_KEY` | — | Your API key (required for STDIO mode) |
64
108
  | `GO_BANANAS_SERVER_URL` | `https://gobananasai.com` | Server URL |
65
109
  | `GO_BANANAS_MCP_TRANSPORT` | `streamable-http` | Transport protocol |
66
110
 
67
111
  ## How It Works
68
112
 
69
- This package re-exports the MCP STDIO proxy from `gobananas-cli`. The proxy bridges STDIO-based MCP clients to the remote Go Bananas server using Streamable HTTP transport.
113
+ This package re-exports the MCP STDIO proxy from [`gobananas-cli`](https://www.npmjs.com/package/gobananas-cli). The proxy bridges STDIO-based MCP clients to the remote Go Bananas server using Streamable HTTP transport.
70
114
 
71
115
  - **Connect timeout**: 30 seconds
72
116
  - **Request timeout**: 10 minutes (image generation can take 25-55s)
@@ -75,3 +119,4 @@ This package re-exports the MCP STDIO proxy from `gobananas-cli`. The proxy brid
75
119
 
76
120
  - [`gobananas-cli`](https://www.npmjs.com/package/gobananas-cli) — Interactive CLI for Go Bananas
77
121
  - [Go Bananas](https://gobananasai.com) — AI image generation platform
122
+ - [Documentation](https://docs.gobananasai.com) — Full API and tool documentation
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gobananas-mcp",
3
- "version": "1.0.7",
4
- "description": "MCP server for Go Bananas AI image generation — use with Claude Desktop, Cursor, Claude Code, Codex",
3
+ "version": "1.0.8",
4
+ "description": "MCP server for Go Bananas AI image generation — use with Claude Desktop, claude.ai, Cursor, Claude Code, VS Code, Codex",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "gobananas-mcp": "./bin/gobananas-mcp.js"
@@ -11,14 +11,20 @@
11
11
  ],
12
12
  "keywords": [
13
13
  "mcp",
14
+ "mcp-server",
15
+ "model-context-protocol",
14
16
  "ai",
15
17
  "image-generation",
16
18
  "claude-desktop",
19
+ "claude",
17
20
  "cursor",
18
21
  "claude-code",
19
22
  "codex",
23
+ "vscode",
20
24
  "gemini",
21
- "go-bananas"
25
+ "go-bananas",
26
+ "gobananas",
27
+ "connector"
22
28
  ],
23
29
  "author": "",
24
30
  "license": "MIT",