Gemini MCP Image Generation Server

by sanxfxteam
Verified

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Integrations

  • Enables configuration of the server through environment variables loaded from a .env file, specifically for storing the Google API key required for authentication.

  • Provides image generation capabilities using Google's Gemini 2 API, allowing users to generate images based on text prompts with customizable parameters such as number of samples and aspect ratio.

  • Used for package management, installation of dependencies, and running the server through npm commands.

Gemini 图像生成 MCP 服务器

这是一个模型上下文协议 (MCP) 服务器,它使用 Google 的 Gemini 2 API 提供图像生成功能。

快速入门

  1. 获取 Gemini API 密钥
  2. 配置 Claude 桌面
    • 找到您的配置文件:
      Mac: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json Linux: ~/.config/Claude/claude_desktop_config.json
    • 添加 Gemini 配置:
      { "mcpServers": { "gemini-imagen": { "command": "npx", "args": ["-y", "github:sanxfxteam/gemini-mcp-server"], "env": { "GEMINI_API_KEY": "your_api_key_here" } } } }
  3. 重启Claude桌面

设置

  1. 安装依赖项:
npm install
  1. 设置您的环境变量:在根目录中创建一个.env文件并添加您的 Google API 密钥:
GEMINI_API_KEY=your_api_key_here

用法

运行服务器:

npm start

测试

npx @modelcontextprotocol/inspector npm run start

可用工具

生成图像

使用 Gemini 2 的实验图像生成 API 生成图像。

参数:

  • prompt (字符串,必需):要生成的图像的描述
  • numSamples (数字,可选,默认值:4):要生成的图像数量
  • aspectRatio (字符串,可选,默认值:'1:1'):生成图像的纵横比
  • personGeneration (字符串,可选,默认值:'ALLOW_ADULT'):人员生成设置

MCP 请求示例:

{ "tool": "generateImage", "params": { "prompt": "A serene mountain landscape at sunset", "numSamples": 2, "aspectRatio": "16:9" } }

笔记

  • 该服务器使用 Gemini 2 的实验性图像生成功能
  • 确保您拥有来自 Google 的适当访问权限和 API 密钥
  • 服务器使用模型上下文协议通过 stdio 进行通信

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

模型上下文协议服务器使用 Google 的 Gemini 2 API 提供图像生成功能,允许用户使用可自定义的参数(如提示、纵横比和人物生成设置)生成多幅图像。

  1. Quick Start
    1. Setup
      1. Usage
        1. Available Tools
      2. Notes
        ID: l17qmg4mfs