1. Conduid
  2. Developer Tools
  3. ffmpeg-server
MCP server · Developer Tools

ffmpeg-server

MCP server for FFmpeg video operations

Unclaimed devtools
39Low

Scored 4 months ago · breakdown

About ffmpeg-server

ffmpeg-server is an MCP server published by git+PedroMarianoAlmeida in the Developer Tools category: mCP server for FFmpeg video operations. It has been installed 0 times through Conduid.

Install

Install
npx ffmpeg-mcp-server
Claude Code
claude mcp add ffmpeg-mcp-gitpedro -- npx -y ffmpeg-mcp-server
npx
npx -y ffmpeg-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about ffmpeg-server

Powered by Claude · Grounded in docs

I know everything about ffmpeg-server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

FFmpeg MCP Server

A Model Context Protocol (MCP) server that provides video and audio manipulation tools powered by FFmpeg. This server enables AI assistants to perform media operations like cutting videos, converting formats, removing silence, and more.

Features

  • Self-contained - Includes bundled FFmpeg binary via ffmpeg-static, no system installation required
  • Format conversion - Convert between audio/video formats (mp4, mp3, wav, mov, etc.)
  • Video editing - Cut segments, concatenate multiple videos, convert images to video
  • Audio processing - Detect and remove silent segments automatically
  • Flexible - Raw FFmpeg command support for advanced operations

Available Tools

Tool Description
cut_video Extract a segment from a video using start time and duration
image_to_video Convert a static image to a video with fixed duration
concat_videos Join multiple videos into one
convert Convert between media formats (auto-detects from file extension)
remove_silence Detect and remove silent segments from video
ffmpeg_raw Execute raw FFmpeg commands for advanced operations

Installation

From npm (recommended)

npm install -g ffmpeg-mcp-server

From source

git clone https://github.com/PedroMarianoAlmeida/ffmpeg-mcp
cd ffmpeg-mcp
npm install
npm run build

Configuration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "ffmpeg": {
      "command": "npx",
      "args": ["ffmpeg-mcp-server"]
    }
  }
}

Claude Code

Add to your Claude Code MCP settings:

{
  "mcpServers": {
    "ffmpeg": {
      "command": "npx",
      "args": ["ffmpeg-mcp-server"]
    }
  }
}

Usage Examples

Cut a video segment

"Cut the first 30 seconds from video.mp4"
→ Uses cut_video tool

Convert formats

"Convert video.mov to mp4"
"Extract audio from video.mp4 as mp3"
→ Uses convert tool

Remove silence

"Remove silent parts from my podcast recording"
→ Uses remove_silence tool (detects silence > 2s at -30dB by default)

Advanced operations

"Add a watermark to my video"
"Speed up the video 2x"
"Rotate video 90 degrees"
→ Uses ffmpeg_raw tool with AI-constructed FFmpeg commands

Development

# Install dependencies
npm install

# Build
npm run build

# Project structure
src/
  index.ts    # MCP server setup and tool registrations
  lib.ts      # FFmpeg operations

License

MIT

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About ffmpeg-server

How do I install ffmpeg-server?

Run npx ffmpeg-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is ffmpeg-server safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is ffmpeg-server still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.