gobananas-mcp 1.0.2 → 1.0.4

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 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -44,9 +44,19 @@ Add to `.cursor/mcp.json`:
44
44
  }
45
45
  ```
46
46
 
47
- ### Claude Code
47
+ ### Claude Code (Recommended)
48
48
 
49
- Add to `.mcp.json` in your project root or `~/.claude.json` for all projects:
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:
50
60
 
51
61
  ```json
52
62
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gobananas-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
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": {
@@ -29,6 +29,6 @@
29
29
  "node": ">=18.0.0"
30
30
  },
31
31
  "dependencies": {
32
- "gobananas-cli": "^1.0.3"
32
+ "gobananas-cli": "^1.0.4"
33
33
  }
34
34
  }