LogoMCP Store
icon of luma-mcp-server

luma-mcp-server

Luma MCP Server provides Luma AI video generation as a Model Context Protocol server, enabling video creation and manipulation.

Introduction

Luma MCP Server

Luma MCP Server offers Luma AI's video generation capabilities as an MCP (Model Context Protocol) server. It provides functionalities to generate videos from text or images, and extend or interpolate existing videos.

šŸŒŸ Overview

This server provides Luma AI's video generation features as an MCP server. It supports video generation from text and images, as well as extending and interpolating existing videos.

šŸ› ļø Available Tools
  • generate_video: Generates a video from a text prompt.

    {
      name: 'generate_video',
      arguments: {
        prompt: "A teddy bear in sunglasses playing electric guitar and dancing",
        loop: true,  // Optional
        callback_url: "https://your-callback-url.com"  // Optional
      }
    }
  • generate_video_from_image: Generates a video using an image as the starting frame.

    {
      name: 'generate_video_from_image',
      arguments: {
        prompt: "Low-angle shot of a majestic tiger prowling through a snowy landscape",
        image_url: "https://your-image-url.com/start-frame.jpg",
        loop: true,  // Optional
        callback_url: "https://your-callback-url.com"  // Optional
      }
    }
  • extend_video: Extends an existing video.

    {
      name: 'extend_video',
      arguments: {
        prompt: "Continue the dance sequence",
        source_generation_id: "existing-video-generation-id",
        loop: true,  // Optional
        callback_url: "https://your-callback-url.com"  // Optional
      }
    }
  • interpolate_videos: Smoothly interpolates between two videos.

    {
      name: 'interpolate_videos',
      arguments: {
        prompt: "Create a smooth transition between the videos",
        start_generation_id: "first-video-generation-id",
        end_generation_id: "second-video-generation-id",
        callback_url: "https://your-callback-url.com"  // Optional
      }
    }
šŸ”§ Developer Information

The project is structured as follows:

src/
ā”œā”€ā”€ types/          - Type definitions
ā”‚   ā”œā”€ā”€ schemas.ts  - Input schemas
ā”‚   ā””ā”€ā”€ types.ts    - Common type definitions
ā”œā”€ā”€ services/       - Business logic
ā”œā”€ā”€ handlers/       - Request handlers
ā”‚   ā””ā”€ā”€ tool-handlers.ts
ā”œā”€ā”€ clients/        - External API clients
ā”‚   ā””ā”€ā”€ luma-client.ts
ā”œā”€ā”€ utils/          - Utilities
ā”‚   ā””ā”€ā”€ error-handler.ts
ā”œā”€ā”€ config/         - Configuration
ā”‚   ā””ā”€ā”€ server-config.ts
ā””ā”€ā”€ index.ts        - Entry point
šŸ“ Notes
  • Prompts should be written in English.
  • Video generation may take some time.
  • Be mindful of API usage limits.

Information

Categories

Newsletter

Join the Community

Subscribe to our newsletter for the latest news and updates