ableton-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
ableton-mcp by jpoindexter | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 22 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 45 | 77 |
| 官方 | — | ✓ |
| 分类 | 多媒体AI / LLM 工具开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
ableton-mcp · 概述
Ableton Live 的 MCP 服务器,提供 200+ 工具用于音乐制作、AI 生成模式和完整的 DAW 控制。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
ableton-mcp · 使用场景
- 通过 AI 命令生成各种风格的鼓点和贝斯线
- 通过自然语言自动化复杂的编曲和场景转换
- 借助 AI 控制 Ableton Live 的传输、轨道、剪辑和效果
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
ableton-mcp · 安装
Claude Desktop 安装
将以下内容添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"AbletonMCP": {
"command": "uvx",
"args": ["ableton-mcp"]
}
}
}前置要求
- Ableton Live 10 或更新版本
- Python 3.8 或更新版本
- [uv 包管理器](https://astral.sh/uv)
Ableton 远程脚本安装
- 从此仓库下载
AbletonMCP_Remote_Script/__init__.py - 复制到 Ableton 的 MIDI Remote Scripts 目录:
- macOS: ~/Library/Preferences/Ableton/Live XX/User Remote Scripts - Windows: C:\Users\[Username]\AppData\Roaming\Ableton\Live x.x.x\Preferences\User Remote Scripts
- 创建一个名为
AbletonMCP的文件夹并粘贴该文件 - 启动 Ableton Live 并在控制表面设置中选择 "AbletonMCP"
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