luma-api-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
luma-api-mcp by lumalabs | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 24 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 34 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具多媒体开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 13 个月前 | 本月 |
luma-api-mcp · 概述
一个集成了 Luma AI 的图像和视频生成功能的 MCP 服务器,使用 Ray 和 Photon 模型。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
luma-api-mcp · 使用场景
- 创建具有特定长宽比和风格的演示图像
- 使用受控的起始和结束帧从文本提示生成视频
- 结合角色参考和文本提示生成营销内容
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
luma-api-mcp · 安装
安装
- 安装 Claude Desktop 应用程序或任何 MCP 客户端
- 从 https://lumalabs.ai/api/keys 获取 API 密钥
- 运行
sh setup.sh,系统会要求输入 API 密钥 - 从步骤 2 粘贴
Claude Desktop 配置:
{
"mcpServers": {
"luma-api": {
"command": "python",
"args": ["-m", "luma_api_mcp"]
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything