video-edit-tools
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@video-edit-toolstrim first 10 seconds and add title 'Demo'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
video-edit-tools
Deterministic video editing SDK for AI agents. Ships with MCP tools.
Demo
Related MCP server: MathMind MCP Server
Features
Never Throws: All functions return
Promise<Result<T>>.Deterministic: Same input + same options = same output.
Pure Functions: No side effects, no global state.
TypeScript First: Strict types, comprehensive JSDoc.
Zero Python: Uses
@ffmpeg-installer/ffmpegand@xenova/transformers. No system dependencies needed.
Installation
npm install video-edit-toolsQuick Start
import { pipeline, getMetadata } from 'video-edit-tools';
const result = await pipeline('input.mp4', [
{ op: 'trim', start: 0, end: 10 },
{ op: 'resize', width: 1280, height: 720, fit: 'cover' },
{ op: 'addText', layers: [{ text: 'Hello', x: 100, y: 100, fontSize: 48, color: '#FFFFFF' }] }
]);
if (result.ok) {
const meta = await getMetadata(result.data);
console.log(meta);
// Do something with result.data (Buffer)
} else {
console.error(result.error);
}MCP Server Setup
Add this configuration to your Claude Desktop or Cursor MCP settings to enable the agent tools:
{
"mcpServers": {
"video-edit-tools": {
"command": "node",
"args": ["/absolute/path/to/node_modules/video-edit-tools/dist/mcp/index.js"]
}
}
}Or using npx if installed globally/locally:
{
"mcpServers": {
"video-edit-tools": {
"command": "npx",
"args": ["video-edit-tools-mcp"]
}
}
}Available Operations
trim,concat,resize,crop,changeSpeed,convert,extractFramesaddText,addSubtitles,composite,gradientOverlay,blurRegion,addTransitionextractAudio,replaceAudio,adjustVolume,muteSection,transcribe(Whisper)adjust,applyFilter,detectScenes,generateThumbnailpipeline(sequential),batch(parallel pipelines)
Architecture
This package wrappers fluent-ffmpeg and @ffmpeg-installer/ffmpeg to safely run operations locally without needing system paths. Temporary files are safely managed in the OS temp directory and cleaned up via process.on('exit') hooks.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP tools for video transcoding, document conversion, and multi-step pipelines — callable by any AI agent.Last updated12821MIT
- Flicense-qualityDmaintenanceProvides a audio/video creation toolbox via MCP protocol, enabling natural language-based video editing tasks such as image-to-video, video merging, subtitle extraction, and more.Last updated3
- Alicense-qualityCmaintenanceProvides 30+ FFmpeg video and audio editing tools via MCP, enabling AI assistants to perform operations like trimming, transcoding, overlays, and composition directly.Last updated2MIT
- Flicense-qualityCmaintenanceEnables agentic video editing and composition via MCP, allowing creation and manipulation of multi-track timelines with clips, transitions, filters, and text overlays, then rendering to MP4 using the melt-7 CLI.Last updated
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Multimodal video analysis MCP — transcription, vision, and OCR for any video URL.
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/swimmingkiim/video-edit-tools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server