mcp-kling vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-kling by 199-mcp | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 26 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | MediaAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 11 mo ago | this month |
mcp-kling · Summary
MCP Kling is a comprehensive server providing full access to Kling AI's video generation tools via MCP protocol.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-kling · Use cases
- Content creators can generate AI videos directly through Claude for social media and marketing
- Film producers can pre-visualize scenes and create storyboards rapidly
- E-commerce platforms can implement virtual try-on features for clothing
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-kling · Install
Installation for Claude Desktop
- Get your Kling API credentials from [Kling AI Developer Console](https://app.klingai.com/global/dev/api-key)
- Add to Claude Desktop config file:
**macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json **Windows**: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mcp-kling": {
"command": "npx",
"args": ["-y", "mcp-kling@latest"],
"env": {
"KLING_ACCESS_KEY": "YOUR_ACCESS_KEY_HERE",
"KLING_SECRET_KEY": "YOUR_SECRET_KEY_HERE"
}
}
}
}- Restart Claude Desktop
For npm installation: npm install -g mcp-kling
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-everything