# io.github.PedroMarianoAlmeida/ffmpeg-mcp (npm · ffmpeg-mcp-server)

FFmpeg video/audio tools: cut, convert, concat, remove silence, and raw commands.

- Trust score: 68/100 (medium)
- Change this week: +22
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `ffmpeg-mcp-server`: 68/100 (this document), [markdown](https://verifymcp.io/servers/pedromarianoalmeida-ffmpeg-mcp/ffmpeg-mcp-server.md), [page](https://verifymcp.io/servers/pedromarianoalmeida-ffmpeg-mcp/ffmpeg-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `ffmpeg-mcp-server`
- Version: `1.0.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (115 of 119), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (115 of 119), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 227 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 482 tokens (~80/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add pedromarianoalmeida-ffmpeg-mcp -- npx -y ffmpeg-mcp-server
```

### Codex

```bash
codex mcp add pedromarianoalmeida-ffmpeg-mcp -- npx -y ffmpeg-mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "pedromarianoalmeida-ffmpeg-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "ffmpeg-mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add pedromarianoalmeida-ffmpeg-mcp --command npx --arg -y --arg ffmpeg-mcp-server
```

### Hermes

```yaml
mcp_servers:
  pedromarianoalmeida-ffmpeg-mcp:
    command: "npx"
    args: ["-y", "ffmpeg-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "pedromarianoalmeida-ffmpeg-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "ffmpeg-mcp-server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 68, +47)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Schema quality: unverified → good
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-08-01 (score 21, −7)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 28, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (6)

### `cut_video` (~88 tokens)

Extract a segment from a video file

Input parameters:

- `duration` (string, required): Duration (e.g., '00:00:30' or '30')
- `inputPath` (string, required): Path to input video file
- `outputPath` (string, required): Path for output video file
- `startTime` (string, required): Start time (e.g., '00:01:30' or '90')

### `image_to_video` (~66 tokens)

Convert a static image to a video with fixed duration

Input parameters:

- `duration` (number, required): Duration in seconds
- `fps` (number): Frames per second
- `imagePath` (string, required): Path to input image file
- `outputPath` (string, required): Path for output video file

### `concat_videos` (~44 tokens)

Concatenate multiple videos into one

Input parameters:

- `inputPaths` (array, required): Array of video file paths to concatenate
- `outputPath` (string, required): Path for output video file

### `convert` (~109 tokens)

Convert media between formats (audio-to-audio, video-to-video, or video-to-audio). Format is auto-detected from file extension.

Input parameters:

- `audioBitrate` (string): Audio bitrate (e.g., '192k', '320k')
- `inputPath` (string, required): Path to input media file
- `outputPath` (string, required): Path for output file (extension determines format)
- `videoBitrate` (string): Video bitrate (e.g., '2M', '5M')

### `remove_silence` (~92 tokens)

Detect and remove silent segments from a video, keeping only non-silent parts

Input parameters:

- `inputPath` (string, required): Path to input video file
- `minSilenceDuration` (number): Minimum duration in seconds to consider as silence
- `noiseThreshold` (string): Audio level threshold for silence detection (e.g., '-30dB')
- `outputPath` (string, required): Path for output video file

### `ffmpeg_raw` (~83 tokens)

Execute a raw FFmpeg command with custom arguments. Use this for advanced operations not covered by other tools (e.g., filters, effects, watermarks, speed changes).

Input parameters:

- `args` (array, required): Array of FFmpeg arguments (e.g., ['-i', 'input.mp4', '-vf', 'scale=1280:720', 'output.mp4'])

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/pedromarianoalmeida-ffmpeg-mcp/ffmpeg-mcp-server#diagnostics

## Score history

- 2026-08-03: 68
- 2026-08-02: 68
- 2026-08-01: 21
- 2026-07-31: 28
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/ffmpeg-mcp-server
- Socket report: https://socket.dev/npm/package/ffmpeg-mcp-server
- Repository: https://github.com/PedroMarianoAlmeida/ffmpeg-mcp
- Changelog RSS feed: https://verifymcp.io/servers/pedromarianoalmeida-ffmpeg-mcp/ffmpeg-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/pedromarianoalmeida-ffmpeg-mcp/ffmpeg-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/pedromarianoalmeida-ffmpeg-mcp/ffmpeg-mcp-server
