MCP Video Converter MCP Server

An MCP server that provides tools for checking FFmpeg installation and converting video files between various formats.

Local serverstdioPython

What is the MCP Video Converter MCP server?

MCP Video Converter becomes available to MCP clients through the mcp video converter mcp server. An MCP server that provides tools for checking FFmpeg installation and converting video files between various formats.

What MCP Video Converter does

An MCP server that provides tools for checking FFmpeg installation and converting video files between various formats.

Key capabilities

  • Check FFmpeg — Verifies if FFmpeg is installed and accessible
  • Convert Video — Converts video, audio, and image files to various formats (e.g., MP4, WebM, MOV, MP3, PNG)
  • Format Info — Get a list of supported file formats for conversion

Installing the mcp video converter mcp server

The server is distributed via npm as @smithery/cli, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 2 environment variables: FFMPEG_PATH, SERVER_URL_OR_FILE_PATH. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • Python 3.10+ - FFmpeg installed and available in your system's PATH - [Optional] uv for environment management

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. MCP Video Converter sits in that group. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by adamanz, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp video converter mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

How to install the MCP Video Converter MCP server

**Windows Alternative:**
   ```json
   {
     "mcpServers": {
       "video-convert": {
         "command": "cmd.exe",
         "args": [
           "/c",
           "cd /d C:\\absolute\\path\\to\\mcp-video-converter && .venv\\Scripts\\activate && python -m mcp_video_converter.server"
         ]
       }
     }
   }

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Python 3.10+ - FFmpeg installed and available in your system's PATH - [Optional] uv for environment management
VariableDescriptionRequired
FFMPEG_PATHFilesystem location the server is allowed to use.Optional
SERVER_URL_OR_FILE_PATHEndpoint or connection string the server talks to.Yes

Frequently asked questions

It connects MCP Video Converter to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with MCP Video Converter directly.