Skip to main content

A Model Context Protocol server for FFmpeg media processing

Project description

MCP-FFMPEG

An MCP (Model Context Protocol) server and CLI for running FFmpeg jobs via a job queue with configurable parallel workers.

Features

  • Job queue — Enqueue video jobs; workers process them in the background.
  • Parallel workers — Run multiple jobs at once (number set in config).
  • Two interfaces
    • CLI — Interactive menu to pick an action and enter parameters.
    • MCP server — Tools for AI assistants (e.g. Claude Desktop) to enqueue and check jobs.
  • Actions
    • Trim — Cut a segment from a video (start time + duration).
    • Change video format — Convert to another container (e.g. mp4 → mkv) without re-encoding.
    • Change resolution — Convert to another resolution, height and width provided by user.
    • Change Subtitle format — Convert to another subtitle format (e.g. srt -> vtt).
    • Extract Audio - Extract audio from an input video file
  • Caching — Same inputs produce the same job ID; completed jobs are reused unless force_run is used.

Requirements

  • Python 3.13+
  • FFmpeg — Must be on your system PATH or set via FFMPEG_PATH (see Configuration).

Installation

Choose one of the following:

Option 1: Install from PyPI

pip install mcp-ffmpeg

Or with uv:

uv add mcp-ffmpeg

Option 2: Clone the repository

git clone https://github.com/priyanshum143/MCP-FFMPEG.git
cd MCP-FFMPEG

Then install from the project root:

# With uv
uv sync

# Or with pip (editable install)
pip install -e .

Configuration

  • FFmpeg path

    • Default: use ffmpeg from system PATH.
    • Optional: set env var FFMPEG_PATH to the full path of the FFmpeg executable (e.g. for Claude Desktop).
  • Worker and paths
    Edit src/MCP_ffmpeg/utils/variables.py (class CommonVariables):

    • PARALLEL_EXECUTIONS_ALLOWED — Number of jobs that can run at once (default: 3).
    • WORKER_RE_RUN_TIME — Seconds to wait between queue checks (default: 10).
    • OUTPUT_DIR / LOGS_DIR — Where job outputs and logs are stored (default: outputs/ and logs/ under project root).

Running

CLI (interactive)

You get a menu: choose an action, enter the requested parameters. Jobs are enqueued and processed by background workers. Logs show which worker picked which job.

If you installed from PyPI:

mcp-ffmpeg-cli

If you cloned the repo:

# With uv (from project root)
uv run python -m MCP_ffmpeg.main

# Or after pip install -e .
mcp-ffmpeg-cli

MCP server (e.g. Claude Desktop)

Use the mcp-ffmpeg command so the MCP server runs over stdio.

If you installed from PyPI: use mcp-ffmpeg in your MCP config.

If you cloned the repo: after pip install -e ., use mcp-ffmpeg the same way. If you used uv sync, use uv run mcp-ffmpeg in the terminal, or in your MCP config use the path to your venv’s mcp-ffmpeg script so the server runs in that environment.

Add this to your %APPDATA%\Claude\claude_desktop_config.json (Windows) or the equivalent config for your MCP client:

{
  "mcpServers": {
    "mcp-ffmpeg": {
      "command": "mcp-ffmpeg",
      "env": {
        "FFMPEG_PATH": "C:\\path\\to\\your\\ffmpeg.exe"
      }
    }
  }
}

On macOS/Linux, use your normal config path and set FFMPEG_PATH to the path of your ffmpeg binary if needed.

Project layout

src/MCP_ffmpeg/
├── main.py           # CLI entrypoint
├── mcp_server.py     # MCP server entrypoint + tool definitions
├── actions/          # FFmpeg actions (trim, change format)
├── jobs/             # Job queue, manager, worker
└── utils/            # Logging, paths, CLI helpers
  • outputs/ — One folder per job (by job ID), containing job_details.json, output file, and optional ffmpeg_logs.log.
  • logs/ — Application logs.

License

No license required, Clone/Fork the repo and enjoy.

Author

Priyanshu CSE 2025 Graduate | Software Engineer at Amagi Media Labs

Feel free to reach out for collaborations or if you encounter any issues!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_ffmpeg-0.1.6.tar.gz (131.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_ffmpeg-0.1.6-py3-none-any.whl (19.7 kB view details)

Uploaded Python 3

File details

Details for the file mcp_ffmpeg-0.1.6.tar.gz.

File metadata

  • Download URL: mcp_ffmpeg-0.1.6.tar.gz
  • Upload date:
  • Size: 131.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mcp_ffmpeg-0.1.6.tar.gz
Algorithm Hash digest
SHA256 20b86adfabd91c9a5caccff8380e2b7be7d063355c0cc69d81e8832e32c30149
MD5 a4a45de853a9a5bec1b68fc657a9b5e4
BLAKE2b-256 7629debea71f2e34ba1bceea67ceda6b74329e257a0ae431a71aff83cdb3a6da

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_ffmpeg-0.1.6.tar.gz:

Publisher: publish.yml on priyanshum143/MCP-FFMPEG

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_ffmpeg-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: mcp_ffmpeg-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 19.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mcp_ffmpeg-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 5e1706c679e34adf28853d7ca5f65a4bf8ccd89c3b43c61c7528bbb5f688fc91
MD5 91f7f23f4c0282d5af2934dc5a9fc953
BLAKE2b-256 ac9fe45ed682b965abf26ce1c3b6fad23223e21f2ef9f2b989a543469f94e430

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_ffmpeg-0.1.6-py3-none-any.whl:

Publisher: publish.yml on priyanshum143/MCP-FFMPEG

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page