gobananas-mcp
v1.0.3
Published
MCP server for Go Bananas AI image generation — use with Claude Desktop, Cursor, Claude Code, Codex
Maintainers
Readme
gobananas-mcp
MCP STDIO proxy for Go Bananas AI image generation. Connects MCP clients (Claude Desktop, Cursor, Claude Code, Codex) to the Go Bananas server.
This is a thin wrapper around gobananas-cli that provides the gobananas-mcp command for zero-install MCP setup.
Setup
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"go-bananas": {
"command": "npx",
"args": ["-y", "gobananas-mcp"],
"env": {
"GO_BANANAS_SERVER_URL": "https://gobananasai.com",
"GO_BANANAS_MCP_TRANSPORT": "streamable-http"
}
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"go-bananas": {
"command": "npx",
"args": ["-y", "gobananas-mcp"],
"env": {
"GO_BANANAS_SERVER_URL": "https://gobananasai.com",
"GO_BANANAS_MCP_TRANSPORT": "streamable-http"
}
}
}
}Claude Code
Add to .mcp.json in your project root or ~/.claude.json for all projects:
{
"mcpServers": {
"go-bananas": {
"command": "npx",
"args": ["-y", "gobananas-mcp"],
"env": {
"GO_BANANAS_SERVER_URL": "https://gobananasai.com",
"GO_BANANAS_MCP_TRANSPORT": "streamable-http"
}
}
}
}Environment Variables
| Variable | Default | Description |
|----------|---------|-------------|
| GO_BANANAS_SERVER_URL | https://gobananasai.com | Server URL |
| GO_BANANAS_MCP_TRANSPORT | streamable-http | Transport protocol |
How It Works
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.
- Connect timeout: 30 seconds
- Request timeout: 10 minutes (image generation can take 25-55s)
Related
gobananas-cli— Interactive CLI for Go Bananas- Go Bananas — AI image generation platform
