Shaka Packager MCP Server
Integrates Shaka Packager with Claude to enable video analysis, transcoding, and packaging for HLS and DASH streaming. It supports advanced features like DRM encryption and content conversion while working alongside the Filesystem MCP server to process local media files.
README
Shaka Packager MCP Server
⚠️ EXPERIMENTAL STATUS DISCLAIMER
This project is in early alpha stage and is highly experimental. It is not recommended for production use. It is also likely MESSY!
Current limitations:
- You may run into inconsistent behavior
- Advanced features (packaging, conversion, etc.) are still under active development
- Path translation between Docker and host environments may require manual configuration
- Expect frequent breaking changes and potential instability
Please report any issues you encounter to help improve the project.
An MCP (Model Context Protocol) server that integrates Shaka Packager with Claude AI applications for video transcoding, packaging, and analysis.
This server works with the Filesystem MCP Server to enable Claude Desktop to access and process video files on your computer, turning Claude into a powerful assistant for media processing tasks.
Features
- Video Analysis: Analyze video files to extract detailed stream information, codecs, bitrates, and more
- Media Packaging: Convert videos for streaming in HLS and DASH formats with support for VOD and live streaming
- Advanced Options:
- Apply DRM encryption (Widevine, PlayReady, FairPlay)
- Configure ad insertion markers
- Convert between formats (MP4, TS, etc.)
- Intelligent Path Handling: Automatically translates paths between Docker and host environments
- Robust Error Management: Provides meaningful error analysis with suggestions for resolution
- Command Assistance: Helps correctly format Shaka Packager commands for optimal results
- Interactive Documentation: Built-in help and examples to guide users through complex operations
- Detailed Outputs: Comprehensive summaries and execution details for all operations
Prerequisites
- Python 3.10 or higher
- Shaka Packager installed and available in your PATH
- Download from GitHub
- Or build from source following these instructions
- An MCP-compatible client (like Claude Desktop)
Installation
Using pip or uv (coming soon)
Install the package with pip:
pip install shaka-packager-mcp
Or with uv:
uv pip install shaka-packager-mcp
From source (recommended)
git clone https://github.com/coderjun/shaka-packager-mcp.git
cd shaka-packager-mcp
pip install -e .
Or with uv:
git clone https://github.com/coderjun/shaka-packager-mcp.git
cd shaka-packager-mcp
uv pip install -e .
Claude Desktop Integration
Since Claude Desktop doesn't directly support uploading video files, we'll use a two-server approach:
- A simplified filesystem MCP server to access video files on your computer
- The Shaka Packager MCP server to analyze and process those videos
Step 1: Set Up the MCP Filesystem Server
Use the official MCP filesystem server to allow Claude to access your video files:
-
Install the official filesystem server with Docker:
docker pull mcp/filesystem -
Alternatively, you can build it from source following the instructions in the Filesystem MCP Server repository
Step 2: Find the Configuration File
Locate your Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
If the file doesn't exist, create it.
Step 3: Add Both Servers to the Configuration
Add the following configuration, making sure to use absolute paths:
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/PATH/TO/VIDEOS/DIRECTORY,dst=/projects/video-drop",
"mcp/filesystem",
"/projects"
]
},
"shaka-packager": {
"command": "/ABSOLUTE/PATH/TO/uv",
"args": [
"run",
"--with",
"mcp[cli]",
"/ABSOLUTE/PATH/TO/shaka_packager_mcp.py"
],
"env": {
"VIDEO_PATH": "/PATH/TO/VIDEOS/DIRECTORY",
"SHAKA_PACKAGER_PATH": "/PATH/TO/PACKAGER"
}
}
}
}
Replace:
/PATH/TO/VIDEOS/DIRECTORYwith the path to the directory containing your video files/ABSOLUTE/PATH/TO/uvwith the full path to your uv executable/ABSOLUTE/PATH/TO/shaka_packager_mcp.pywith the full path to the script file/PATH/TO/PACKAGERwith the full path to your Shaka Packager executable
For example:
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/Users/username/Videos,dst=/projects/video-drop",
"mcp/filesystem",
"/projects"
]
},
"shaka-packager": {
"command": "/Users/username/.local/bin/uv",
"args": [
"run",
"--with",
"mcp[cli]",
"/Users/username/Development/shaka-packager-mcp/shaka_packager_mcp.py"
],
"env": {
"VIDEO_PATH": "/Users/username/Videos",
"SHAKA_PACKAGER_PATH": "/Users/username/.shaka/packager"
}
}
}
}
Step 4: Restart Claude Desktop
After editing the configuration file, restart Claude Desktop to apply the changes.
How to Use the Two-Server Approach
-
First, browse your video files using the simplified filesystem server:
- Ask Claude to "List the files in my video directory"
- Navigate to the video file you want to analyze or process
-
Once you've found your video file, use its path with the Shaka Packager tools:
- For analysis: "Please analyze this video: /Users/username/Videos/example.mp4"
- For processing: "Please package this video for HLS: /Users/username/Videos/example.mp4"
Troubleshooting
If you encounter any issues:
- Make sure both servers are properly configured with absolute paths
- Verify that Shaka Packager is installed and accessible
- Ensure the directory specified for the filesystem server exists and contains videos
- Check Claude Desktop logs for errors at:
- macOS:
~/Library/Logs/Claude/mcp*.log - Windows:
%APPDATA%\Claude\logs\mcp*.log
- macOS:
Usage
Once both the Filesystem MCP server and the Shaka Packager MCP server are running in Claude Desktop:
-
Access your video files:
Please show me the files in my Videos directory -
Navigate to your video file:
Please show me the files in the Movies subdirectory -
Copy the file:// URI path of the video you want to process
-
Use the Shaka Packager tools with the file path:
Please analyze this video: file:///Users/username/Videos/my_video.mp4or
Please package this video for HLS and DASH streaming: file:///Users/username/Videos/my_video.mp4 -
The server will execute the appropriate Shaka Packager command and provide a detailed summary of the results
You can also use direct file paths if you know the exact location of your video files:
Please analyze this video: /Users/username/Videos/my_video.mp4
Tools
The server provides these tools:
- analyze_video: Examines a video file and provides detailed stream information with intelligent error handling
- run_shaka_packager: Executes any Shaka Packager command with custom arguments and proper path handling
- get_shaka_options: Retrieves available command options and version information
- get_shaka_documentation: Provides comprehensive documentation and examples for using Shaka Packager
Prompts
The server includes these prompt templates:
- MP4 to TS conversion
- VOD packaging in HLS and DASH
- Live streaming packaging
- Content encryption
- Ad insertion preparation
- Video analysis
- Command format reminder
- Error interpretation guidance
Configuration
The server can be configured using environment variables:
SHAKA_PACKAGER_PATH: Path to the Shaka Packager executable (highly recommended for Claude Desktop)VIDEO_PATH: Path to your local video directory (used for translating paths between Docker and host)DOCKER_PATH: Docker container mount path (default: "/projects/video-drop")TEMP_DIR: Custom temporary directory for file uploadsLOG_LEVEL: Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)COMMAND_TIMEOUT: Timeout in seconds for Shaka Packager commands (default: 300)
You can set these in:
- Your Claude Desktop configuration file (preferred for
SHAKA_PACKAGER_PATHandVIDEO_PATH) - Your environment variables
- A
.envfile in the same directory as the script
Example .env file:
SHAKA_PACKAGER_PATH=/usr/local/bin/packager
VIDEO_PATH=/Users/yourusername/Videos
LOG_LEVEL=DEBUG
Development
Setting up a development environment
# Clone the repository
git clone https://github.com/coderjun/shaka-packager-mcp.git
cd shaka-packager-mcp
# Install development dependencies with pip
pip install -e ".[dev]"
# Or with uv
uv pip install -e ".[dev]"
Running tests
pytest
Code formatting
black .
isort .
Understanding the Code Structure
The main components of the Shaka Packager MCP server are:
shaka_packager_mcp.py: Main server implementation with MCP tools and promptstests/: Test suite for verifying functionality
This server is designed to work with the official MCP filesystem server for accessing video files.
Key Features in the Implementation
- Robust path handling: Automatically translates paths between Docker and host environments
- Smart error handling: Provides meaningful error messages and suggestions
- Command syntax assistance: Helps correctly format Shaka Packager commands
- Documentation integration: Provides comprehensive documentation and examples
License
This project is licensed under the MIT License - see the LICENSE file for details.
Getting Help
Feel free to use an AI code copilot, the author does.
If you encounter any issues or have questions:
- Check the troubleshooting section in this README
- Review the Shaka Packager documentation
- Use the
get_shaka_documentationtool for interactive help within Claude - Open an issue on GitHub
Acknowledgements
- Shaka Packager for the powerful video processing capabilities
- Model Context Protocol (MCP) for the communication framework
- Claude for the AI assistant capabilities
- Anthropic for developing Claude and the MCP standard
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。