filesystem vs json2video-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | json2video-mcp-server by omergocmen | |
|---|---|---|
| Stars | ★ 85,748 | ★ 25 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | MediaAI / LLM ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 12 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
json2video-mcp-server · Summary
An MCP server for generating videos programmatically using the json2video API with extensive scene and element support.
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
json2video-mcp-server · Use cases
- Automatically create video content from structured data for marketing campaigns
- Generate personalized video messages as part of customer service automation
- Create video summaries or reports from analytical data outputs
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.
json2video-mcp-server · Install
Installation
- **Running with npx:**
env JSON2VIDEO_API_KEY=your_api_key_here npx -y @omerrgocmen/json2video-mcp- **Manual Installation:**
npm install -g @omerrgocmen/json2video-mcp- **Claude Desktop Configuration:**
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"json2video-mcp": {
"command": "npx",
"args": ["-y", "@omerrgocmen/json2video-mcp"],
"env": {
"JSON2VIDEO_API_KEY": "your_api_key_here"
}
}
}
}Replace your_api_key_here with your actual json2video API key.