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.

제미니 이미지 생성 MCP 서버

이는 Google의 Gemini 2 API를 사용하여 이미지 생성 기능을 제공하는 MCP(Model Context Protocol) 서버입니다.

빠른 시작

  1. Gemini API 키 받기
  2. Claude Desktop 구성
    • 구성 파일을 찾으세요.지엑스피1
    • Gemini 구성 추가:
      { "mcpServers": { "gemini-imagen": { "command": "npx", "args": ["-y", "github:sanxfxteam/gemini-mcp-server"], "env": { "GEMINI_API_KEY": "your_api_key_here" } } } }
  3. Claude Desktop을 다시 시작하세요

설정

  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