PluginBench
MCP Server
Stale

io.github.burningion/video-editing-mcp MCP Server

io.github.burningion/video-editing-mcp

Analyze, search, and generate video edits from Claude using Video Jungle.

What is the io.github.burningion/video-editing-mcp MCP server?

The video-editing-mcp (Video Editor MCP) server is a Model Context Protocol server that connects LLMs like Claude to Video Jungle, enabling video upload, analysis, search, and edit generation directly from chat. It requires a Video Jungle account and API key, and exposes tools for adding videos, searching analyzed content, and generating or locally editing video edits (including DaVinci Resolve integration).

This MCP server integrates with Video Jungle to let an LLM upload videos from a URL, run multi-modal (audio+visual) analysis on them, search across analyzed videos by keyword or embedding, and generate rendered video edits from single or multiple source videos—all driven by chat prompts. It also supports local editing workflows via OpenTimelineIO export into DaVinci Resolve Studio, and optionally searching a local macOS Photos library for videos. Requires a free Video Jungle account and API key to operate.

How to install io.github.burningion/video-editing-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • VJ_API_KEY
    required
    secret

    Video Jungle API Key (found at https://www.video-jungle.com/user/settings)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "video-editing-mcp": {
      "command": "uvx",
      "args": [
        "video-editor-mcp"
      ],
      "env": {
        "VJ_API_KEY": "<YOUR_VJ_API_KEY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "video-editing-mcp": {
      "command": "uvx",
      "args": [
        "video-editor-mcp"
      ],
      "env": {
        "VJ_API_KEY": "<YOUR_VJ_API_KEY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "video-editing-mcp": {
      "command": "uvx",
      "args": [
        "video-editor-mcp"
      ],
      "env": {
        "VJ_API_KEY": "<YOUR_VJ_API_KEY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "video-editing-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "video-editor-mcp"
      ],
      "env": {
        "VJ_API_KEY": "<YOUR_VJ_API_KEY>"
      }
    }
  }
}
Claude Code
claude mcp add video-editing-mcp --env VJ_API_KEY=<YOUR_VJ_API_KEY> -- uvx video-editor-mcp

Tools & capabilities

Tools this server exposes to the agent.

  • add-videoAdd a video file for analysis from a URL. Returns a vj:// URI to reference the video file.
  • create-videojungle-projectCreates a Video Jungle project to contain generative scripts, analyzed videos, and images for video edit generation.
  • edit-locallyCreates an OpenTimelineIO project and downloads it to your machine to open in a DaVinci Resolve Studio instance (Resolve Studio must already be running).
  • generate-edit-from-videosGenerates a rendered video edit from a set of video files.
  • generate-edit-from-single-videoGenerates an edit from a single input video file.
  • get-project-assetsGets assets within a project for video edit generation.
  • search-videosReturns video matches based upon embeddings and keywords.
  • update-video-editLive updates a video edit's information; if Video Jungle is open, the edit updates in real time.
  • search-local-videosSearches videos in the local macOS Photos app by Apple's tags (requires LOAD_PHOTOS_DB=1 environment variable).

Use cases

  • Download and analyze a video from a URL for later retrieval by content
  • Search previously analyzed videos by spoken words or visual content
  • Generate a rendered video edit compiling all moments matching a query across multiple videos
  • Cut a single video down to just the segments matching a search term
  • Export a project as an OpenTimelineIO file for editing in DaVinci Resolve Studio
  • Search a local macOS Photos library for videos matching a tag

io.github.burningion/video-editing-mcp MCP server FAQ

What does the video-editing-mcp server do?

It connects an LLM (like Claude) to Video Jungle, letting you upload and analyze videos, search them by keyword or embedding, generate rendered video edits, and export projects for editing in DaVinci Resolve Studio.

Is it free to use?

The MCP server itself is open source and installable via pip/uvx, but it requires a Video Jungle account and API key; usage of Video Jungle's video analysis and generation features depends on that platform's account/plan.

What authentication is required?

You need to sign up at Video Jungle, obtain an API key from your profile settings, and pass it as an argument when starting the server (e.g., `uvx video-editor-mcp YOURAPIKEY`).

How do I install it in Claude Desktop?

Add an entry to claude_desktop_config.json with command `uvx` and args `["video-editor-mcp", "YOURAPIKEY"]`, or install automatically via Smithery with `npx -y @smithery/cli install video-editor-mcp --client claude`.

Can it search videos on my local machine?

Yes, on macOS you can set the LOAD_PHOTOS_DB=1 environment variable to allow the server to search your Photos app library by Apple's tags.

Does it integrate with video editing software?

Yes, the edit-locally tool creates an OpenTimelineIO project you can open in an already-running DaVinci Resolve Studio instance.

README (reference)

Source of truth, from the repository.

Video Editor MCP server

Video Jungle MCP Server

See a demo here: https://www.youtube.com/watch?v=KG6TMLD8GmA

Upload, edit, search, and generate videos from everyone's favorite LLM and Video Jungle.

You'll need to sign up for an account at Video Jungle in order to use this tool, and add your API key.

PyPI version

Components

Resources

The server implements an interface to upload, generate, and edit videos with:

  • Custom vj:// URI scheme for accessing individual videos and projects
  • Each project resource has a name, description
  • Search results are returned with metadata about what is in the video, and when, allowing for edit generation directly

Prompts

Coming soon.

Tools

The server implements a few tools:

  • add-video
    • Add a Video File for analysis from a URL. Returns an vj:// URI to reference the Video file
  • create-videojungle-project
    • Creates a Video Jungle project to contain generative scripts, analyzed videos, and images for video edit generation
  • edit-locally
    • Creates an OpenTimelineIO project and downloads it to your machine to open in a Davinci Resolve Studio instance (Resolve Studio must already be running before calling this tool.)
  • generate-edit-from-videos
    • Generates a rendered video edit from a set of video files
  • generate-edit-from-single-video
    • Generate an edit from a single input video file
  • get-project-assets
    • Get assets within a project for video edit generation.
  • search-videos
    • Returns video matches based upon embeddings and keywords
  • update-video-edit
    • Live update a video edit's information. If Video Jungle is open, edit will be updated in real time.

Using Tools in Practice

In order to use the tools, you'll need to sign up for Video Jungle and add your API key.

add-video

Here's an example prompt to invoke the add-video tool:

can you download the video at https://www.youtube.com/shorts/RumgYaH5XYw and name it fly traps?

This will download a video from a URL, add it to your library, and analyze it for retrieval later. Analysis is multi-modal, so both audio and visual components can be queried against.

search-videos

Once you've got a video downloaded and analyzed, you can then do queries on it using the search-videos tool:

can you search my videos for fly traps?

Search results contain relevant metadata for generating a video edit according to details discovered in the initial analysis.

search-local-videos

You must set the environment variable LOAD_PHOTOS_DB=1 in order to use this tool, as it will make Claude prompt to access your files on your local machine.

Once that's done, you can search through your Photos app for videos that exist on your phone, using Apple's tags.

In my case, when I search for "Skateboard", I get 1903 video files.

can you search my local video files for Skateboard?

generate-edit-from-videos

Finally, you can use these search results to generate an edit:

can you create an edit of all the times the video says "fly trap"?

(Currently), the video edits tool relies on the context within the current chat.

generate-edit-from-single-video

Finally, you can cut down an edit from a single, existing video:

can you create an edit of all the times this video says the word "fly trap"?

Configuration

You must login to Video Jungle settings, and get your API key. Then, use this to start Video Jungle MCP:

$ uv run video-editor-mcp YOURAPIKEY

To allow this MCP server to search your Photos app on MacOS:

$ LOAD_PHOTOS_DB=1 uv run video-editor-mcp YOURAPIKEY

Quickstart

Install

Installing via Smithery

To install Video Editor for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install video-editor-mcp --client claude

Claude Desktop

You'll need to adjust your claude_desktop_config.json manually:

On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json

<details> <details> <summary>Published Server Configuration</summary>
 "mcpServers": {
   "video-editor-mcp": {
     "command": "uvx",
     "args": [
       "video-editor-mcp",
       "YOURAPIKEY"
     ]
   }
 }
</details> <summary>Development/Unpublished Servers Configuration</summary>
 "mcpServers": {
   "video-editor-mcp": {
     "command": "uv",
     "args": [
       "--directory",
       "/Users/YOURDIRECTORY/video-editor-mcp",
       "run",
       "video-editor-mcp",
       "YOURAPIKEY"
     ]
   }
 }

With local Photos app access enabled (search your Photos app):

  "video-jungle-mcp": {
    "command": "uv",
    "args": [
      "--directory",
      "/Users/<PATH_TO>/video-jungle-mcp",
      "run",
      "video-editor-mcp",
      "<YOURAPIKEY>"
    ],
   "env": {
        "LOAD_PHOTOS_DB": "1"
    }
  },
</details>

Be sure to replace the directories with the directories you've placed the repository in on your computer.

Development

Building and Publishing

To prepare the package for distribution:

  1. Sync dependencies and update lockfile:
uv sync
  1. Build package distributions:
uv build

This will create source and wheel distributions in the dist/ directory.

  1. Publish to PyPI:
uv publish

Note: You'll need to set PyPI credentials via environment variables or command flags:

  • Token: --token or UV_PUBLISH_TOKEN
  • Or username/password: --username/UV_PUBLISH_USERNAME and --password/UV_PUBLISH_PASSWORD

MCP Server Registry

mcp-name: io.github.burningion/video-editing-mcp

Debugging

Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the MCP Inspector.

You can launch the MCP Inspector via npm with this command:

(Be sure to replace YOURDIRECTORY and YOURAPIKEY with the directory this repo is in, and your Video Jungle API key, found in the settings page.)

npx @modelcontextprotocol/inspector uv run --directory /Users/YOURDIRECTORY/video-editor-mcp video-editor-mcp YOURAPIKEY

Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.

Additionally, I've added logging to app.log in the project directory. You can add logging to diagnose API calls via a:

logging.info("this is a test log")

A reasonable way to follow along as you're workin on the project is to open a terminal session and do a:

$ tail -n 90 -f app.log

Related MCP servers

Give your AI agent stealth web scraping with Cloudflare bypass and CSS selection, powered by Scrapling.

67k
Python
BSD-3-Clause
View repository →

Give your AI coding agent full control of a live Chrome browser for automation, debugging, and performance analysis.

45k
TypeScript
Apache-2.0
View repository →

Let AI agents manage your Puter files, websites, and serverless workers over MCP.

43k
TypeScript
AGPL-3.0
View repository →

Browser automation for AI agents via MCP, powering ByteDance's Agent TARS hybrid GUI/DOM browser control.

37k
TypeScript
Apache-2.0
View repository →

Run arbitrary shell commands from an MCP-connected AI agent.

37k
TypeScript
Apache-2.0
View repository →

Filesystem access MCP server from ByteDance's UI-TARS/Agent TARS ecosystem.

37k
TypeScript
Apache-2.0
View repository →