Overview
Video Editor MCP is a server interface that allows users to upload, edit, search, and generate videos using the Video Jungle platform.
To use Video Editor MCP, sign up for an account at Video Jungle, obtain your API key, and follow the provided instructions to set up the server and use its tools.
- Upload and edit videos from various sources. - Search videos using embeddings and keywords. - Generate video edits from multiple videos or a single video file. - Custom URI scheme for accessing individual videos and projects.
- Creating video compilations from multiple sources.
- Searching for specific content within videos for editing purposes.
- Generating quick edits based on user-defined criteria.
Add to your AI client
Use these steps to connect Video Editor MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"video-editing-mcp-burningion": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-video-editing-mcp-burningion"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"video-editing-mcp-burningion": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-video-editing-mcp-burningion"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"video-editing-mcp-burningion": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-video-editing-mcp-burningion"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"video-editing-mcp-burningion": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-video-editing-mcp-burningion"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"video-editing-mcp-burningion": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-video-editing-mcp-burningion"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"video-editing-mcp-burningion": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-video-editing-mcp-burningion"
]
}
}
}FAQ
Do I need an account to use Video Editor MCP?
Yes, you must sign up for an account at Video Jungle to use this tool.
Is there a cost associated with using Video Editor MCP?
The project does not specify costs, but check Video Jungle for any potential fees.
Can I edit videos from my local storage?
Yes, you can search and edit videos stored locally on your device.