npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

google-veo3-1-mcp-server

v1.0.1

Published

MCP Server for Google Veo 3.1 Video Generation API

Readme

Google Veo 3.1 MCP Server

MCP Server and CLI batch tool for Google Veo 3.1 Video Generation API.

Features

  • MCP Server for integration with Claude Desktop and other MCP clients
  • Batch CLI Tool for processing multiple video generation jobs
  • Text-to-Video: Generate videos from text prompts
  • Image-to-Video: Animate static images
  • Reference Images: Use up to 3 images for character/style consistency
  • Video Extension: Extend existing videos by 7 seconds
  • Frame Interpolation: Generate video between two keyframes
  • Cost Estimation: Calculate costs before execution

Installation

npm install
npm run build

Setup

  1. Get your Google API key from Google AI Studio

  2. Create a .env file:

GOOGLE_API_KEY=your_api_key_here

Or set the environment variable directly:

export GOOGLE_API_KEY=your_api_key_here

MCP Server Usage

Claude Desktop Configuration

Add to your Claude Desktop configuration (%APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "veo3": {
      "command": "node",
      "args": ["C:/path/to/google-veo3-1-mcp-server/dist/index.js"],
      "env": {
        "GOOGLE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Or using npx after publishing:

{
  "mcpServers": {
    "veo3": {
      "command": "npx",
      "args": ["google-veo3-1-mcp-server"],
      "env": {
        "GOOGLE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Available Tools

generate_video

Generate video from text prompt or image.

{
  "prompt": "A golden retriever running through autumn leaves",
  "model": "veo-3.1-generate-preview",
  "resolution": "1080p",
  "duration_seconds": 8,
  "generate_audio": true,
  "output_path": "./output/video.mp4"
}

Parameters:

  • prompt: Text description of the video (required unless image provided)
  • model: veo-3.1-generate-preview (default) or veo-3.1-fast-generate-preview
  • aspect_ratio: 16:9 (default) or 9:16
  • resolution: 720p (default), 1080p, or 4k (4k only for standard model)
  • duration_seconds: 4, 6, or 8 (default: 8)
  • generate_audio: Whether to generate audio (default: true)
  • negative_prompt: Elements to avoid
  • image: Image for Image-to-Video mode
  • reference_images: Array of reference images for consistency
  • output_path: Path to save the video

extend_video

Extend an existing video by 7 seconds.

{
  "video": "./input/video.mp4",
  "prompt": "Continue with the character walking forward",
  "output_path": "./output/extended.mp4"
}

Requirements:

  • Input video: 1-30 seconds, 24fps, 720p or 1080p
  • Output: 7 seconds at 720p

interpolate_frames

Generate video transitioning between two keyframes.

{
  "first_frame": "./images/start.jpg",
  "last_frame": "./images/end.jpg",
  "prompt": "Smooth camera pan",
  "duration_seconds": 8,
  "generate_audio": true,
  "output_path": "./output/interpolated.mp4"
}

get_video_status

Check the status of a video generation operation.

{
  "operation_name": "models/veo-3.1-generate-preview/operations/abc123"
}

Batch CLI Usage

# Estimate costs only
veo3-batch config.json --estimate-only

# Execute batch
veo3-batch config.json --output-dir ./output

# With options
veo3-batch config.json --max-concurrent 3 --no-audio --format json

CLI Options

| Option | Description | |--------|-------------| | -o, --output-dir <path> | Output directory for videos | | -f, --format <text\|json> | Output format (default: text) | | -c, --max-concurrent <n> | Parallel jobs (1-5, default: 2) | | -p, --poll-interval <ms> | Polling interval | | -t, --timeout <ms> | Total batch timeout | | -e, --estimate-only | Only estimate costs | | --no-audio | Generate without audio (reduces cost) | | --allow-any-path | Allow absolute output paths |

Batch Configuration Format

{
  "jobs": [
    {
      "prompt": "A cat playing piano",
      "duration_seconds": 8,
      "resolution": "1080p",
      "generate_audio": true
    },
    {
      "type": "extend",
      "video": "./videos/source.mp4",
      "prompt": "Continue the scene"
    },
    {
      "type": "interpolate",
      "first_frame": "./images/start.jpg",
      "last_frame": "./images/end.jpg"
    }
  ],
  "output_dir": "./output",
  "max_concurrent": 2,
  "default_model": "veo-3.1-generate-preview"
}

Pricing

| Feature | Resolution | With Audio | Video Only | |---------|------------|------------|------------| | Standard Model | 720p/1080p | $0.40/sec | $0.20/sec | | Standard Model | 4K | $0.60/sec | $0.40/sec | | Fast Model | 720p/1080p | $0.20/sec | $0.10/sec |

Note: Gemini API preview models always generate audio. The generate_audio parameter is not currently supported. Use Vertex AI for audio control.

Cost Examples

| Video Type | Resolution | Duration | Audio | Cost | |------------|------------|----------|-------|------| | Text-to-Video | 1080p | 8 sec | Yes | $3.20 | | Text-to-Video | 1080p | 8 sec | No | $1.60 | | Image-to-Video (Fast) | 720p | 4 sec | Yes | $0.80 | | Video Extension | 720p | 7 sec | No | $1.40 | | Frame Interpolation | 1080p | 8 sec | Yes | $3.20 |

Models

| Model | Description | Resolutions | Speed | |-------|-------------|-------------|-------| | veo-3.1-generate-preview | High quality | 720p, 1080p, 4K | Standard | | veo-3.1-fast-generate-preview | Faster generation | 720p, 1080p | Fast |

Reference Images

Use reference images to maintain consistency:

{
  "prompt": "The character walks through a forest",
  "reference_images": [
    {
      "image": "./character.jpg",
      "reference_type": "asset"
    }
  ]
}
  • asset: For characters/objects (max 3 images)
  • style: For visual style (max 1 image)

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | GOOGLE_API_KEY | Google API key (required) | - | | OUTPUT_DIR | Default output directory | ./output | | DEBUG | Enable debug logging | false | | VIDEO_POLL_INTERVAL | Polling interval (ms) | 15000 | | VIDEO_MAX_POLL_ATTEMPTS | Max polling attempts | 120 |

API Documentation

For detailed API specifications, see:

License

MIT