Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
VEO_MODELYesDefault Veo model (must be full API name): veo-2.0-generate-001, veo-3.0-generate-preview, or veo-3.0-fast-generate-preview
CONFIG_DIRNoDirectory for state files and downloads (default: ~/.pmind-veo-mcp)
GEMINI_API_KEYYesYour Gemini API key with video generation access

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tasks
{
  "list": {},
  "cancel": {},
  "requests": {
    "tools": {
      "call": {}
    },
    "prompts": {
      "get": {}
    },
    "resources": {
      "read": {}
    }
  }
}
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
veo_generate_videoA

Generate videos using Google's Veo models.

Supports:

  • Text-to-video: Provide a text prompt (all models)

  • Image-to-video: Provide an image path (Veo 3 only)

  • Both: Provide both image and prompt for guided animation (Veo 3 only)

This tool starts a background video generation process that:

  1. Initiates video generation with the specified parameters

  2. Monitors progress in the background

To download generated videos, use veo_download_video after generation completes.

Returns:

  • session_id: Use with veo_check_generation to monitor progress

  • status: Current generation status

  • pid: Process ID of the background worker

Examples: Text-to-video: "Serene waterfall in a lush forest, cinematic lighting" Image-to-video: Use image_path="/path/to/image.jpg" with optional prompt

veo_check_generationA

Check the status of a video generation subprocess.

This monitors the subprocess that is handling the video generation, not the Gemini API directly. The subprocess handles all API polling.

If the generation has an operation_id, you can also use veo_check_operation to directly query Google's API for the operation status.

veo_list_generationsA

List all video generation sessions.

Shows all subprocess-based generation sessions with their current status.

veo_list_sessionsB

List all video generation sessions.

Shows all subprocess-based generation sessions with their current status.

veo_cleanup_sessionsA

Clean up old generation sessions and their files.

Removes state files and optionally downloaded videos for old sessions.

veo_download_videoA

Download a generated video from a completed generation session.

Use this tool to:

  • Download videos after generation completes

  • Download a specific video from multiple samples

  • Re-download previously generated videos

Note: Due to current SDK limitations, this downloads placeholder data. The actual video generation API requires allowlist access.

Returns:

  • file_path: Path to the downloaded video file

  • file_size: Size of the downloaded file

  • success: Whether download was successful

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.8/5.0

Scored across 6 tools

Disambiguation2/5

The tools are mostly distinct, but veo_list_generations and veo_list_sessions have identical descriptions, making them impossible to differentiate. This redundancy creates clear ambiguity for an agent selecting which to use.

Naming Consistency5/5

All six tools follow the veo_verb_noun pattern consistently, with clear verbs like generate, check, list, cleanup, and download. There is no mixing of styles or vague naming.

Tool Count5/5

With six tools, the server is well-scoped for video generation workflows. The count covers generation, status checking, listing, downloading, and cleanup without being excessive or thin.

Completeness3/5

The core lifecycle (generate, check, list, download, cleanup) is covered, but there is no cancel/delete operation, and the description mentions veo_check_operation which is not actually exposed. These gaps could frustrate agents needing abort or granular API status.

Maintenance

ActivityInactive
ResponsivenessNo issues