Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

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

Enables video generation from text prompts and image-to-video using Google Veo AI models via the Gemini API.

README.md

PMIND Veo MCP Server

⚠️ Experimental: This MCP server is in an experimental state and may have rough edges. Please report any issues you encounter.

A Python implementation of an MCP (Model Context Protocol) server using FastMCP that provides tools for generating videos with Google's Veo AI models through the Gemini API. This server uses a subprocess-based architecture for reliable long-running video generation tasks with the official google-genai Python SDK.

🎯 Features

Core Capabilities

  • Video Generation: Generate videos from text prompts using Veo models
  • Image-to-Video: Animate images with Veo 3 models
  • Fast Generation: Veo 3 Fast model for speed-optimized video creation
  • Subprocess Architecture: Non-blocking video generation with isolated subprocess handling
  • Progress Tracking: Real-time status updates via state file monitoring
  • Video Downloads: Download completed videos using the official google-genai SDK
  • Multiple Generations: Track and manage multiple concurrent video generations
  • Process Management: Graceful cancellation and cleanup of generation processes

Installation & Setup

Step 1: Clone the Repository

git clone https://github.com/yourusername/pmind-veo-mcp.git
cd pmind-veo-mcp

Step 2: Install Dependencies

# Install dependencies using uv
uv sync

Step 3: Set Up API Key

  1. Get a Gemini API key from Google AI Studio
  2. Create a .env file in the project root:
cp .env.example .env
  1. Edit .env and add your configuration:
# Required: Your Gemini API key for Veo access
GEMINI_API_KEY=your_api_key_here

# Required: Default Veo model to use
# Options: veo-2.0-generate-001, veo-3.0-generate-preview, veo-3.0-fast-generate-preview
VEO_MODEL=veo-3.0-generate-preview

# Optional: Configuration directory (default: ~/.pmind-veo-mcp)
# CONFIG_DIR=/path/to/config

Step 4: Configure with Your Client

Add the MCP server to your client's MCP configuration:

{
  "mcpServers": {
    "pmind-veo": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/pmind-veo-mcp", "pmind-veo-mcp"]
    }
  }
}

Configuration

Required Environment Variables

  • GEMINI_API_KEY: Your Gemini API key with video generation access
  • VEO_MODEL: Default model (must be full API name):
  • veo-2.0-generate-001 for Veo 2
  • veo-3.0-generate-preview for Veo 3
  • veo-3.0-fast-generate-preview for Veo 3 Fast (speed-optimized)

Optional Environment Variables

  • CONFIG_DIR: Directory for state files and downloads (default: ~/.pmind-veo-mcp)

MCP Tools Reference

  • veo_generate_video - Start video generation with a text prompt
  • veo_check_generation - Check the status of a video generation
  • veo_download_video - Download a completed video
  • veo_list_sessions - List all video generation sessions
  • veo_cleanup_sessions - Clean up old generation sessions

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.