short-video-maker vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
short-video-maker by gyoridavid | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,129 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | MediaProductivityAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 11 mo ago | this month |
short-video-maker · Summary
An MCP server that creates short-form videos from text using TTS, captions, and background footage.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
short-video-maker · Use cases
- Content creators automatically generating short-form video content from scripts
- Marketing teams creating social media ads at scale
- Educators creating explainer videos with minimal technical knowledge
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
short-video-maker · Install
Installation
Docker (Recommended)
docker run -it --rm --name short-video-maker -p 3123:3123 -e LOG_LEVEL=debug -e PEXELS_API_KEY= gyoridavid/short-video-maker:latest-tinyNPM
npm install -g @gyoridavid/short-video-maker
short-video-makerClaude Desktop
Add to Claude Desktop config.json:
{
"mcpServers": {
"short-video-maker": {
"command": "docker",
"args": ["run", "-it", "--rm", "--name", "short-video-maker", "-p", "3123:3123", "-e", "PEXELS_API_KEY=your_key", "gyoridavid/short-video-maker:latest-tiny"]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.