MCP server intelligence profile

Gemini 2.5 Flash Image MCP Server

Enables conversational image generation and editing with Google's Gemini 2.5 Flash Image Preview. Supports text-to-image generation, natural language image editing, multi-image composition, and style transfer with optional file saving

Local Onlynanameru
Awaiting current scanNpm · 0.1.0

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
4Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @taiyokimura/gemini-2-5-flash-mcp from npm

Version 0.1.0 declares 1 executable entrypoint.

npm install --save-exact @taiyokimura/gemini-2-5-flash-mcp@0.1.0
npx -y -p @taiyokimura/gemini-2-5-flash-mcp@0.1.0 @taiyokimura/gemini-2-5-flash-mcp
MCP client configuration example
{
  "mcpServers": {
    "@taiyokimura/gemini-2-5-flash-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@taiyokimura/gemini-2-5-flash-mcp@0.1.0",
        "@taiyokimura/gemini-2-5-flash-mcp"
      ]
    }
  }
}

Identity

Canonical sluggemini-2-5-flash-image-mcp-6622286dDeploymentLocal Only
Canonical packagenpm:@taiyokimura/gemini-2-5-flash-mcpRepositorynanameru/Gemini-2.5-Flash-Image-MCP
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@taiyokimura/gemini-2-5-flash-mcp0.1.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@taiyokimura/gemini-2-5-flash-mcp0.1.0CurrentSep 5, 20264 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
gemini-2-5-flash-mcpServer-reported name
1Capability groups
Aug 22, 2026Observed

Tools 4

ToolCategoryAnnotationsRisk
compose_imagesCompose a new image using multiple input images and a guiding prompt.
Input schema
{
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "description": "Describe how to compose the elements of the input images."
    },
    "images": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "dataBase64": {
            "type": "string"
          },
          "path": {
            "type": "string"
          },
          "mimeType": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "minItems": 2
    },
    "saveToFilePath": {
      "type": "string",
      "description": "Optional path to save the composed image"
    }
  },
  "required": [
    "prompt",
    "images"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
edit_imageEdit an image using a prompt. Provide one input image via base64 or file path.
Input schema
{
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "description": "Describe the edit; the model matches original style and lighting."
    },
    "image": {
      "type": "object",
      "properties": {
        "dataBase64": {
          "type": "string",
          "description": "Base64 without data URL prefix"
        },
        "path": {
          "type": "string",
          "description": "Path to the input image file"
        },
        "mimeType": {
          "type": "string",
          "description": "image/png or image/jpeg"
        }
      },
      "additionalProperties": false,
      "description": "One input image"
    },
    "saveToFilePath": {
      "type": "string",
      "description": "Optional path to save the edited image"
    }
  },
  "required": [
    "prompt",
    "image"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
generate_imageGenerate an image from a text prompt using Gemini 2.5 Flash Image
Input schema
{
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "description": "Detailed scene description. Use photographic terms for photorealism."
    },
    "saveToFilePath": {
      "type": "string",
      "description": "Optional path to save the image (png/jpeg by extension)"
    }
  },
  "required": [
    "prompt"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
style_transferTransfer style from a style image to a base image, guided by an optional prompt.
Input schema
{
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "description": "Optional additional instruction for the style transfer."
    },
    "baseImage": {
      "type": "object",
      "properties": {
        "dataBase64": {
          "type": "string"
        },
        "path": {
          "type": "string"
        },
        "mimeType": {
          "type": "string"
        }
      },
      "additionalProperties": false
    },
    "styleImage": {
      "type": "object",
      "properties": {
        "dataBase64": {
          "type": "string"
        },
        "path": {
          "type": "string"
        },
        "mimeType": {
          "type": "string"
        }
      },
      "additionalProperties": false
    },
    "saveToFilePath": {
      "type": "string",
      "description": "Optional path to save the output"
    }
  },
  "required": [
    "baseImage",
    "styleImage"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Gemini 2.5 Flash Image MCP Server questions

How do I install Gemini 2.5 Flash Image MCP Server?

Install the selected package version with: npm install --save-exact @taiyokimura/gemini-2-5-flash-mcp@0.1.0

What tools does Gemini 2.5 Flash Image MCP Server provide?

Gemini 2.5 Flash Image MCP Server exposed 4 tools during independent protocol observation, including compose_images, edit_image, generate_image, style_transfer.

Is Gemini 2.5 Flash Image MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Google intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.