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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@aixlabs/vidmax-mcp-server

v1.0.0

Published

MCP Server for VidMax API endpoints - Create videos, manage series, generate images via AI assistants

Readme

VidMax MCP Server

A Model Context Protocol (MCP) server that exposes VidMax API endpoints for use with AI assistants like Claude.

Features

This MCP server provides tools for:

  • Health Monitoring: Check API health status
  • Video Management: Create, retrieve, and render videos
  • Series Management: Create and manage video series
  • Image Generation: Generate AI images from prompts
  • Voice Operations: Manage voices and create voiceovers
  • User & Team Info: Access account and team information

Installation

Option 1: Install from npm (Recommended)

# Install globally
npm install -g @aixlabs/vidmax-mcp-server

# Or run directly with npx
npx @aixlabs/vidmax-mcp-server

Option 2: Local Development

cd packages/vidmax-mcp-server
pnpm install
pnpm build

Configuration

Set the following environment variables:

# Required: Your VidMax API key
export VIDMAX_API_KEY="your-api-key-here"

# Optional: Custom API base URL (defaults to https://dev.vidmax.ai/api/v1)
export VIDMAX_API_BASE_URL="https://dev.vidmax.ai/api/v1"

Usage

With Claude Code

Option 1: Using npm package (Recommended)

claude mcp add-json vidmax-mcp '{
    "command": "npx",
    "args": ["@aixlabs/vidmax-mcp-server"],
    "env": {
        "VIDMAX_API_KEY": "your-api-key-here",
        "VIDMAX_API_BASE_URL": "https://dev.vidmax.ai/api/v1"
    }
}'

Option 2: Local development build

claude mcp add-json vidmax-local '{
    "command": "node",
    "args": [
        "/Users/bansalshray/Desktop/Projects/ShrayBans/BansalVentures/aix-turborepo/packages/vidmax-mcp-server/dist/index.js"
    ],
    "env": {
        "VIDMAX_API_KEY": "vm_live_05b252cb33105aaab034c130a2154507_cda0d4f",
        "VIDMAX_API_BASE_URL": "http://localhost:3000/api/v1"
    }
}'

With Claude Desktop

Option 1: Using npm package (Recommended)

Add to your Claude Desktop config (~/Library/Application\ Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "vidmax": {
      "command": "npx",
      "args": ["@aixlabs/vidmax-mcp-server"],
      "env": {
        "VIDMAX_API_KEY": "your-api-key-here",
        "VIDMAX_API_BASE_URL": "https://dev.vidmax.ai/api/v1"
      }
    }
  }
}

Option 2: Local development build

{
  "mcpServers": {
    "vidmax": {
      "command": "node",
      "args": ["/absolute/path/to/aix-turborepo/packages/vidmax-mcp-server/dist/index.js"],
      "env": {
        "VIDMAX_API_KEY": "your-api-key-here",
        "VIDMAX_API_BASE_URL": "https://dev.vidmax.ai/api/v1"
      }
    }
  }
}

Testing with MCP Inspector

npm run inspector

Then open http://localhost:4000 in your browser.

Available Tools

System Operations

  • health_check - Check API health
  • auth_check - Validate API key and authentication

Video Operations

  • get_videos - List videos with filtering
  • get_video - Get specific video details
  • create_video - Create AI video from prompt
  • create_reddit_video - Create video from Reddit post
  • create_fake_text_video - Create video from conversation
  • render_video - Render video to MP4

Series Operations

  • get_series - List all series
  • create_series - Create new series
  • generate_series_video - Generate video for series

Image Operations

  • generate_image - Generate AI image
  • get_images - List generated images

Voice Operations

  • get_voices - List available voices
  • create_voiceover - Create voiceover from text

Account Operations

  • get_user_info - Get user account info
  • get_team_info - Get team information

Resources

  • vidmax://api/endpoints - Complete API endpoint documentation
  • vidmax://api/authentication - Authentication guide

Example Usage

Once connected to Claude, you can use commands like:

"Create a new video with the prompt 'A day in the life of a software developer'"

"Generate an image with the prompt 'Futuristic cityscape at sunset'"

"Get all my videos and show me their status"

"Create a new series called 'Tech Tutorials' for educational content"

Development

# Build the server
npm run build

# Watch for changes during development
npm run dev

# Start the server
npm start

# Test with MCP Inspector
npm run inspector

Error Handling

The server handles API errors gracefully and returns structured error responses. Common issues:

  • Authentication Error: Check your API key is valid
  • Network Error: Verify the API base URL is correct
  • Rate Limiting: The API may rate limit requests
  • Invalid Parameters: Check tool input parameters match the schema