Skip to content

Pro Tier

Video Context MCP has a Pro tier that unlocks additional capabilities beyond the free defaults.

The redact_sensitive tool blurs, pixelates, or blackouts rectangular regions in videos to hide API keys, tokens, passwords, and other secrets before sharing or analysis. It supports three operating modes:

  • Intent-driven — describe what to redact in natural language (e.g., "blur the API keys") and AI detection is enabled automatically
  • Manual mode — supply pixel coordinates directly; never sends frames to an AI provider
  • AI-assisted detection — samples frames and uses any of the 6 AI backends to detect sensitive regions

Requires a Pro license (VIDEO_MCP_LICENSE_KEY). See redact_sensitive documentation for full details.

All five media generation tools are exclusively available to Pro users:

ToolDescription
text_to_speechConvert text to natural speech (MiniMax TTS)
generate_imageGenerate images from a text prompt
generate_videoGenerate video from text or image (async)
generate_musicGenerate music from a prompt and optional lyrics
query_generation_taskPoll async video task status and download result

These tools require a Pro license and a MINIMAX_API_KEY. Get your key from the MiniMax Interface Key page, then add it to your MCP config — see Environment Variables.

Also ensure your MiniMax account has sufficient balance by topping up at MiniMax Balance before using media generation.

The VIDEO_MCP_MAX_FRAMES setting controls how many keyframes summarize_video and similar tools extract from a video before sending them to the AI:

TierDefaultBehaviour
Free50 framesClamped between 5 and 50
Pro100 framesDefault 100; set 0 for uncapped

In both tiers, frame sets are automatically trimmed to fit the active provider’s size or image-count limit (for example: 12 MB for GLM, 10 MB for Qwen/MiMo, 80 MB for Kimi’s frame-fallback path, and 100 images / 100 MB for MiniMax-M3).

All users can analyze YouTube videos and direct http(s):// URLs. Pro users unlock downloads from additional platforms:

  • Vimeo
  • TikTok
  • Bilibili
  • And many other platforms supported by yt-dlp

Free users will see an error message when they pass a non-YouTube platform URL.

Pro tier extracts frames at higher resolution, which improves accuracy for detail-sensitive tasks like reading on-screen text, identifying small objects, or distinguishing similar faces.

YouTube (works for all users):

“Summarize this YouTube video: https://www.youtube.com/watch?v=abc123

Vimeo, TikTok, Bilibili (Pro required):

“Transcribe the audio from https://vimeo.com/123456789” “Analyze this TikTok: https://www.tiktok.com/@user/video/123

LAUNCH PROMO

For a limited time, you can get a PRO license for just $10. The license is valid for 1 year.

Get license from Gumroad.

The license unlocks all media generation tools — see Model Pricing for what the underlying MiniMax models cost.

After purchasing, add your license key to the env block of your MCP client configuration file (e.g. .vscode/mcp.json, .mcp.json, or your editor’s MCP settings):

{
"servers": {
"videoMcp": {
"type": "stdio",
"command": "video-context-mcp",
"env": {
"VIDEO_MCP_LICENSE_KEY": "your-license-key-here"
}
}
}
}

You can combine the license key with your other environment variables:

{
"servers": {
"videoMcp": {
"type": "stdio",
"command": "video-context-mcp",
"env": {
"VIDEO_MCP_LICENSE_KEY": "your-license-key-here",
"GEMINI_API_KEY": "your-gemini-key",
"AWS_S3_BUCKET": "my-video-analysis-2026"
}
}
}
}