gobananas-cli
v1.0.2
Published
Command-line interface for Go Bananas! AI Image Generation
Downloads
220
Maintainers
Readme
gobananas-cli
Interactive command-line interface and MCP proxy for Go Bananas AI image generation.
Install
npm install -g gobananas-cliOr use without installing:
npx gobananas-cliCommands
| Command | Alias | Description |
|---------|-------|-------------|
| gobananas | gb | Interactive CLI |
| gobananas-mcp | — | MCP STDIO proxy for AI editors |
MCP Setup
For MCP client integration (Claude Desktop, Cursor, Claude Code), use the dedicated gobananas-mcp package which provides zero-install npx setup:
{
"mcpServers": {
"go-bananas": {
"command": "npx",
"args": ["-y", "gobananas-mcp"],
"env": {
"GO_BANANAS_SERVER_URL": "https://gobananasai.com",
"GO_BANANAS_MCP_TRANSPORT": "streamable-http"
}
}
}
}See the gobananas-mcp README for client-specific setup instructions.
Environment Variables
| Variable | Default | Description |
|----------|---------|-------------|
| GO_BANANAS_SERVER_URL | https://gobananasai.com | Server URL |
| GO_BANANAS_MCP_TRANSPORT | streamable-http | Transport protocol |
Architecture
src/— TypeScript sourcedist/— Compiled outputbin/— CLI entry points (gobananas.js,gobananas-mcp.js)
The MCP STDIO proxy (bin/gobananas-mcp.js) bridges STDIO-based MCP clients to the remote server using Streamable HTTP transport with a 30s connect timeout and 10-minute request timeout.
Related
gobananas-mcp— MCP proxy package (zero-installnpxsetup)- Go Bananas — AI image generation platform
