everything vs json2video-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | json2video-mcp-server by omergocmen | |
|---|---|---|
| Stars | ★ 85,748 | ★ 25 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | MediaAI / LLM ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 12 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
json2video-mcp-server · Summary
An MCP server for generating videos programmatically using the json2video API with extensive scene and element support.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingjson2video-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.