Skip to main content
Glama
bitscorp-mcp

MCP FFmpeg Video Processor

by bitscorp-mcp

MCP FFmpeg ビデオプロセッサ

鍛冶屋のバッジ

FFmpegを使用してビデオファイルを操作するNode.jsサーバー。このサーバーは以下のAPIを提供します。

  • 動画をさまざまな解像度(360p、480p、720p、1080p)にサイズ変更します

  • さまざまな形式(MP3、AAC、WAV、OGG)でビデオからオーディオを抽出します

前提条件

このアプリケーションを実行する前に、以下がインストールされている必要があります。

  1. Node.js (v14以上)

  2. FFmpeg - ビデオ処理に必要です

FFmpegのインストール

macOSの場合:

brew install ffmpeg

Ubuntu/Debianの場合:

sudo apt update
sudo apt install ffmpeg

Windowsの場合:

  1. 公式サイトからFFmpegをダウンロードする

  2. ファイルをフォルダに抽出します(例: C:\ffmpeg

  3. PATH環境変数にbinフォルダを追加します

Related MCP server: ffmpeg-mcp

インストール

  1. このリポジトリをクローンします:

git clone https://github.com/bitscorp-mcp/mcp-ffmpeg.git
cd mcp-ffmpeg
  1. 依存関係をインストールします:

npm install

Smithery経由でインストール

Smithery経由で Claude Desktop 用の mcp-ffmpeg を自動的にインストールするには:

npx -y @smithery/cli install @bitscorp-mcp/mcp-ffmpeg --client claude

サーバーの実行

次のコマンドでサーバーを起動します。

npm start

ファイルの変更時に自動的に再起動する開発の場合:

npm run dev

Smithery経由でインストール

Smithery経由で Claude Desktop 用の mcp-ffmpeg を自動的にインストールするには:

npx -y @smithery/cli install @bitscorp-mcp/mcp-ffmpeg --client claude

カーソル用のmcp-ffmpegをインストールするには、「設定」->「カーソル設定」->「機能」->「MCPサーバー」->「+追加」に進みます。

タイプ: コマンドを選択し、AdjustのAPIキーを使用して以下を貼り付けます。

npx -y @smithery/cli@latest run @bitscorp/mcp-ffmpeg

Claude Desktopでの使用

この MCP FFmpeg サーバーは、Claude Desktop と統合して、自然言語リクエストを通じてビデオを処理できます。

npxで実行

npx を使用してサーバーを直接実行できます。

npx /path/to/mcp-ffmpeg

または、パッケージを npm に公開した場合:

npx mcp-ffmpeg

Claudeデスクトップの設定

このサーバーを Claude Desktop に追加するには、Claude Desktop 構成ファイルを更新します。

  1. Claude Desktop の構成ファイルを見つけます。

    • macOS: ~/.config/claude-desktop/config.jsonまたは~/Library/Application Support/Claude Desktop/config.json

    • Windows: %APPDATA%\Claude Desktop\config.json

    • Linux: ~/.config/claude-desktop/config.json

  2. FFmpeg MCP サーバーをmcpServersセクションに追加します。

{
    "mcpServers": {
        "ffmpeg": {
            "command": "npx",
            "args": [
                "--yes",
                "/absolute/path/to/mcp-ffmpeg"
            ]
        }
    }
}

パッケージを npm に公開した場合:

{
    "mcpServers": {
        "ffmpeg": {
            "command": "npx",
            "args": [
                "--yes",
                "mcp-ffmpeg"
            ]
        }
    }
}
  1. 変更を有効にするには、Claude Desktop を再起動してください。

クロードの例題

設定が完了すると、次のようなプロンプトが使用できるようになります。

Using the ffmpeg MCP server, please resize the video at /path/to/video.mp4 to 720p resolution.

注記

  • アップロードされた動画はuploadsディレクトリに一時的に保存されます

  • 処理されたビデオとオーディオファイルはoutputディレクトリに保存されます

  • サーバーのアップロードファイルサイズは500MBに制限されています

ライセンス

マサチューセッツ工科大学

Available Tools

4 tools
extract-audioC

Extract audio from a video file

ParametersJSON Schema
NameRequiredDescriptionDefault
videoPathYesPath to the video file to extract audio from
formatNoAudio format to extractmp3
outputDirNoOptional directory to save the output file (defaults to a temporary directory)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states what the tool does but doesn't cover important behavioral aspects like whether it modifies the original video file, what permissions are needed, error handling, or performance characteristics. The description is minimal and lacks operational context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise with just one sentence that directly states the tool's purpose. There's no wasted language or unnecessary elaboration, making it front-loaded and efficient. Every word earns its place in conveying the core functionality.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is insufficiently complete. It doesn't explain what the tool returns (e.g., path to extracted audio file, success/failure indicators) or important behavioral details. For a tool that performs file operations with multiple parameters, more context is needed for effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description doesn't add any parameter information beyond what's already in the schema, which has 100% coverage with clear descriptions for all parameters. The baseline score of 3 reflects that the schema adequately documents parameters, so the description doesn't need to compensate but also doesn't provide additional value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('extract') and resource ('audio from a video file'), making it immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'get-video-info' or 'resize-video', which might also involve video processing but serve different functions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools or any context-specific usage scenarios, leaving the agent to infer based on tool names alone. There's no explicit when/when-not or alternative recommendations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get-ffmpeg-versionA

Get the version of FFmpeg installed on the system

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool retrieves version information, implying a read-only operation, but does not disclose potential side effects, error conditions, permissions required, or output format. This leaves significant gaps in understanding how the tool behaves beyond its basic function.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence that directly states the tool's purpose without any unnecessary words or structural fluff. It is front-loaded and efficiently communicates the essential information, making it highly concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is adequate for a basic read operation but incomplete for practical use. It lacks details on output format (e.g., string, object), error handling, or system dependencies, which are important for an agent to invoke it correctly in varied contexts.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0 parameters with 100% coverage, so the schema fully documents the lack of inputs. The description appropriately does not mention parameters, aligning with the schema. Since there are no parameters to explain, this meets the baseline for tools without inputs, though it doesn't add extra semantic context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Get') and resource ('version of FFmpeg installed on the system'), distinguishing it from sibling tools like 'extract-audio' or 'resize-video' which perform different operations. It precisely defines what the tool does without being vague or tautological.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'get-video-info' (which might include version information) or other system-check tools. It lacks explicit context, prerequisites, or exclusions, offering only a basic statement of purpose without usage instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get-video-infoC

Get detailed information about a video file

ParametersJSON Schema
NameRequiredDescriptionDefault
videoPathYesPath to the video file to analyze

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden but only states what the tool does without behavioral details. It doesn't disclose if this is a read-only operation, potential errors (e.g., invalid paths), performance aspects, or output format, which are critical for a tool with no output schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's function without unnecessary words. It's appropriately sized and front-loaded, making it easy to understand at a glance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what 'detailed information' includes (e.g., metadata, duration, resolution) or behavioral traits, leaving gaps that could hinder an agent's ability to use the tool effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, with the single parameter 'videoPath' documented in the schema. The description adds no additional meaning beyond what the schema provides, such as examples or constraints, so it meets the baseline for high coverage without extra value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get detailed information') and resource ('about a video file'), making the tool's purpose understandable. However, it doesn't differentiate from sibling tools like 'get-ffmpeg-version' or 'resize-video' beyond the general video focus, which keeps it from a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. The description lacks context about prerequisites, such as needing a valid video file path, or comparisons to siblings like 'extract-audio' for audio-related tasks, leaving usage unclear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

resize-videoB

Resize a video to one or more standard resolutions

ParametersJSON Schema
NameRequiredDescriptionDefault
videoPathYesPath to the video file to resize
resolutionsYesResolutions to convert the video to
outputDirNoOptional directory to save the output files (defaults to a temporary directory)

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the action ('resize a video') but doesn't describe what happens (e.g., creates new files, overwrites existing ones, requires specific permissions, or has performance/rate limits). For a mutation tool with zero annotation coverage, this leaves significant gaps in understanding the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is front-loaded with the core action ('resize a video') and adds clarifying detail ('to one or more standard resolutions'). Every part of the sentence earns its place by specifying scope and output.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (a mutation operation with 3 parameters), no annotations, and no output schema, the description is minimally adequate. It covers the basic purpose but lacks details on behavioral traits, error handling, or output format. For a video processing tool, more context on file formats, processing time, or result location would be beneficial.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds minimal value beyond the schema by mentioning 'standard resolutions', which aligns with the enum in the schema but doesn't provide additional context like aspect ratio preservation or quality settings. Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'resize' and resource 'video', specifying it converts to 'standard resolutions'. It distinguishes from sibling tools like 'extract-audio' or 'get-video-info' by focusing on resolution transformation rather than extraction or metadata retrieval. However, it doesn't explicitly differentiate from all siblings (e.g., 'get-ffmpeg-version' is clearly different).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., video file format compatibility), when not to use it (e.g., for non-standard resolutions), or how it relates to sibling tools like 'extract-audio' for audio-only processing. Usage is implied only by the tool name and description.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool updatev1.0.0
    • Changedget-ffmpeg-version1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
  2. 4 tool updates
    • First observedextract-audio
    • First observedget-ffmpeg-version
    • First observedget-video-info
    • First observedresize-video

TDQS

B3.1/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: extract-audio handles audio extraction, get-ffmpeg-version checks system version, get-video-info provides metadata, and resize-video adjusts video dimensions. There is no overlap in functionality, making tool selection unambiguous.

Naming Consistency4/5

The tools follow a consistent verb-noun pattern with hyphens (e.g., extract-audio, resize-video), except for get-ffmpeg-version which includes an extra noun. This minor deviation does not significantly impact readability or predictability.

Tool Count3/5

With only 4 tools, the set feels thin for a video processing domain. While the tools cover basic operations, there are likely gaps for common tasks like format conversion, trimming, or adding effects, which might limit agent effectiveness.

Completeness2/5

The tool set is severely incomplete for video processing. It lacks essential operations such as format conversion, trimming/cutting, merging videos, adding subtitles, or applying filters. This will cause frequent agent failures when handling typical video editing workflows.

Maintenance

ActivityInactive
ResponsivenessUnresponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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/bitscorp-mcp/mcp-ffmpeg'

If you have feedback or need assistance with the MCP directory API, please join our Discord server