everything vs mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-server by plainly-videos | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30d uses | — | — |
| Score | 77 | 39 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | MediaDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 4 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server · Summary
Official MCP server for Plainly Videos API enabling After Effects automation through LLM clients.
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
mcp-server · Use cases
- Automate video creation using LLM prompts for Adobe After Effects projects
- Integrate video generation capabilities into AI applications via MCP
- Streamline video production workflows through AI-driven automation
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-everythingmcp-server · Install
Installation
Via npm
- Get your Plainly API key from [Settings page](https://app.plainlyvideos.com/dashboard/user/settings/general)
- Add config to your editor:
{
"servers": {
"plainly": {
"command": "npx",
"args": ["-y", "@plainly-videos/mcp-server@latest"],
"env": {
"PLAINLY_API_KEY": "<PLAINLY_API_KEY>"
}
}
}
}Via Smithery
npx -y @smithery/cli@latest install @plainly-videos/mcp-server --client claude --key <YOUR_SMITHERY_KEY>