ultimate_mcp_server vs mcp-video
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | mcp-video by KyaniteLabs | |
|---|---|---|
| Stars | ★ 149 | ★ 18 |
| 30d uses | — | — |
| Score | 85 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | MediaDeveloper ToolsAI / LLM Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
mcp-video · Summary
Video editing MCP server with 103 tools for FFmpeg operations, AI-assisted media processing, and local repurposing.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
mcp-video · Use cases
- Automate social media content creation from longer videos
- Produce podcast highlights with audio normalization and chapters
- Generate cinematic videos with style scaffolding and shot prompts
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_servermcp-video · Install
Installation
Prerequisite: [FFmpeg](https://ffmpeg.org/) must be installed and available on PATH.
# macOS
brew install ffmpeg
# Ubuntu/Debian
sudo apt install ffmpegRun without a global install:
uvx --from mcp-video mcp-video doctorOr install with pip:
pip install mcp-video
mcp-video doctorClaude Desktop
{
"mcpServers": {
"mcp-video": {
"command": "uvx",
"args": ["--from", "mcp-video", "mcp-video"]
}
}
}