npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

banana-image-mcp

v1.1.0

Published

An MCP server for generating blog cover images using Google Gemini AI, with WebP conversion and Qiniu CDN upload

Downloads

39

Readme

banana-image-mcp

npm version npm downloads License: MIT Node.js Version MCP

中文文档

An MCP (Model Context Protocol) server for image generation, processing, and CDN upload. Powered by Google Gemini AI, Sharp, and Qiniu Cloud.

Features

  • Generate images from text prompts using Google Gemini AI
  • Upload local or remote images to Qiniu CDN
  • Automatic conversion to WebP format with compression
  • Date-prefixed filenames with customizable upload paths
  • Temporary files are cleaned up automatically

Quick Start

Using npx (recommended)

No installation needed — configure directly in your MCP client:

{
  "mcpServers": {
    "banana-image": {
      "command": "npx",
      "args": ["-y", "banana-image-mcp"],
      "env": {
        "GEMINI_API_KEY": "your-gemini-api-key",
        "QINIU_ACCESS_KEY": "your-qiniu-access-key",
        "QINIU_SECRET_KEY": "your-qiniu-secret-key",
        "QINIU_BUCKET": "your-bucket-name",
        "QINIU_CDN_DOMAIN": "https://your-cdn-domain.com"
      }
    }
  }
}

Global installation

npm install -g banana-image-mcp

Then configure in your MCP client:

{
  "mcpServers": {
    "banana-image": {
      "command": "banana-image-mcp",
      "env": {
        "GEMINI_API_KEY": "your-gemini-api-key",
        "QINIU_ACCESS_KEY": "your-qiniu-access-key",
        "QINIU_SECRET_KEY": "your-qiniu-secret-key",
        "QINIU_BUCKET": "your-bucket-name",
        "QINIU_CDN_DOMAIN": "https://your-cdn-domain.com"
      }
    }
  }
}

Upgrade

# npx users: just clear the cache to get the latest version
npx clear-npx-cache && npx -y banana-image-mcp

# Global installation users
npm update -g banana-image-mcp

Configuration file location

  • Claude Desktop (macOS): ~/Library/Application Support/Claude/claude_desktop_config.json
  • Claude Desktop (Windows): %APPDATA%\Claude\claude_desktop_config.json

Environment Variables

| Variable | Description | |---|---| | GEMINI_API_KEY | Google Gemini API key for image generation | | QINIU_ACCESS_KEY | Qiniu cloud access key | | QINIU_SECRET_KEY | Qiniu cloud secret key | | QINIU_BUCKET | Qiniu storage bucket name | | QINIU_CDN_DOMAIN | CDN domain for generated image URLs |

Getting API Keys

Google Gemini API Key:

  1. Visit Google AI Studio
  2. Create or get an API key

Qiniu Cloud:

  1. Register at Qiniu Cloud
  2. Create a storage bucket
  3. Get AccessKey and SecretKey from your account settings
  4. Configure a CDN domain

Tools

generate_blog_cover

Generate a blog cover image (1792x1024), convert to WebP, and upload to Qiniu CDN.

| Parameter | Type | Required | Description | |---|---|---|---| | prompt | string | Yes | Text prompt describing the image to generate | | slug | string | Yes | Slug identifier for the filename (prefixed with date) | | path | string | No | Upload directory path (default: blog-cover) |

Returns:

{
  "url": "https://your-cdn-domain.com/blog-cover/20260321-my-post.webp"
}

generate_image

Generate an image using Gemini AI (original size), convert to WebP, and upload to Qiniu CDN.

| Parameter | Type | Required | Description | |---|---|---|---| | prompt | string | Yes | Text prompt describing the image to generate | | slug | string | Yes | Slug identifier for the filename (prefixed with date) | | path | string | No | Upload directory path (default: aigc/image) |

Returns:

{
  "url": "https://your-cdn-domain.com/aigc/image/20260321-my-image.webp"
}

upload_image

Upload a local file or remote URL image to Qiniu CDN, with automatic WebP conversion.

| Parameter | Type | Required | Description | |---|---|---|---| | source | string | Yes | Local file path or HTTP/HTTPS URL of the image | | slug | string | Yes | Slug identifier for the filename (prefixed with date) | | path | string | No | Upload directory path (default: images) |

Returns:

{
  "url": "https://your-cdn-domain.com/images/20260321-my-photo.webp"
}

Architecture

prompt → Google Gemini API (PNG) → Sharp (WebP) → Qiniu CDN → URL
source (local/remote) ─────────→ Sharp (WebP) → Qiniu CDN → URL
  • Image generation: Google Gemini 3.1 Flash Image Preview
  • Image processing: Sharp (WebP conversion, optional resize)
  • Cloud storage: Qiniu CDN

License

MIT