Gemini Veo MCP logo

Gemini Veo MCP

kevinkiklee/gemini-veo-mcp
0 starsMITUpdated 2026-06-22Community

Is this your server?

Add your score badge to your README and get your server in front of 45k+ builders a month.

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Generates videos using Google Gemini Veo from text prompts with optional aspect ratio settings.

README.md

Gemini Veo MCP

A simple Model Context Protocol (MCP) server for generating videos using Google Gemini Veo.

Setup

  1. Install Dependencies:
   npm install
  1. Configure API Key:

Update the .env file with your Google Gemini API Key: ``env GEMINI_API_KEY=your_actual_key_here ``

  1. Build:
   npx tsc

Using with Claude Code

Option 1: Claude CLI (Recommended)

Run this command to add the MCP server automatically to your configuration:

claude mcp add gemini-veo --scope user -- node /Users/iser/workspace/gemini-veo-mcp/dist/index.js

Option 2: Manual Config

Add this to your Claude config (~/.claude.json):

{
  "mcpServers": {
    "gemini-veo": {
      "command": "node",
      "args": ["/Users/iser/workspace/gemini-veo-mcp/dist/index.js"],
      "env": {
        "GEMINI_API_KEY": "your_actual_key_here"
      }
    }
  }
}

Or run Claude with the MCP enabled: ``bash claude --mcp gemini-veo:node:/Users/iser/workspace/gemini-veo-mcp/dist/index.js ``

Tools

generate_video

Generates a video based on a text prompt.

  • prompt: (string) Description of the video.
  • aspect_ratio: (string, optional) "16:9", "9:16", or "1:1".

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.