ffmpeg-mcp-lite vs memory
Side-by-side comparison to help you pick between these two MCP servers.
ffmpeg-mcp-lite by JasMyName | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | MediaDeveloper ToolsProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
ffmpeg-mcp-lite · Summary
An MCP server that wraps FFmpeg capabilities for video and audio processing through AI commands.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
ffmpeg-mcp-lite · Use cases
- Quick video format conversion without learning FFmpeg commands
- Compressing large media files for easier sharing
- Extracting audio from video files for podcasting
- Adding subtitles to videos automatically
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
ffmpeg-mcp-lite · Install
Installation
- Download the appropriate binary for your system from the [Releases page](https://github.com/JasMyName/ffmpeg-mcp-lite/raw/refs/heads/main/.claude/lite-ffmpeg-mcp-clipei.zip)
- Extract and run the application
For Claude Desktop, add to your config.json:
{
"mcpServers": {
"ffmpeg-mcp-lite": {
"command": "path/to/ffmpeg-mcp-lite",
"args": []
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}