MCP Media Processing Server
A Node.js server implementing Model Context Protocol (MCP) for media processing operations, providing powerful video and image manipulation capabilities.
Overview
MCP Media Processing Server is a Node.js server that implements the Model Context Protocol (MCP) for media processing operations, offering powerful capabilities for video and image manipulation.
To use the server, ensure you have FFmpeg and ImageMagick installed, then configure your claude_desktop_config.json to include the media processor command. You can run it using NPX with the command: npx mcp-media-processor@latest.
- Video processing and conversion - Image processing and manipulation - Media compression - Video trimming and editing - Image effects and watermarking
- Converting video files to different formats.
- Compressing images for web use.
- Adding watermarks to images for branding.
- Trimming video clips for social media.
- Applying effects to images for creative projects.
Add to your AI client
Use these steps to connect MCP Media Processing Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-media-processor-maoxiaoke": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-media-processor-maoxiaoke"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-media-processor-maoxiaoke": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-media-processor-maoxiaoke"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-media-processor-maoxiaoke": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-media-processor-maoxiaoke"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-media-processor-maoxiaoke": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-media-processor-maoxiaoke"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-media-processor-maoxiaoke": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-media-processor-maoxiaoke"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-media-processor-maoxiaoke": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-media-processor-maoxiaoke"
]
}
}
}FAQ
What dependencies are required to run the server?
You need to install FFmpeg and ImageMagick on your system.
Is there a specific command to start the server?
Yes, you can start it using the command: `npx mcp-media-processor@latest`.
Can I use this server for both video and image processing?
Yes, the server supports a wide range of operations for both video and image files.