MCP Catalogs
Home

ableton-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

ableton-mcp
by jpoindexter
everything
by modelcontextprotocol
Stars★ 22★ 85,748
30d uses
Score4577
Official
Categories
MediaAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

ableton-mcp · Summary

Ableton Live MCP server with 200+ tools for music production, AI-generated patterns, and full DAW control.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

ableton-mcp · Use cases

  • Generate drum patterns and basslines in various styles through AI commands
  • Automate complex arrangements and scene transitions via natural language
  • Control Ableton Live's transport, tracks, clips, and effects with AI assistance

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

ableton-mcp · Install

Claude Desktop Installation

Add to your claude_desktop_config.json:

{
    "mcpServers": {
        "AbletonMCP": {
            "command": "uvx",
            "args": ["ableton-mcp"]
        }
    }
}

Prerequisites

  • Ableton Live 10 or newer
  • Python 3.8 or newer
  • [uv package manager](https://astral.sh/uv)

Ableton Remote Script Installation

  1. Download AbletonMCP_Remote_Script/__init__.py from this repo
  2. Copy to Ableton's MIDI Remote Scripts directory:

- macOS: ~/Library/Preferences/Ableton/Live XX/User Remote Scripts - Windows: C:\Users\[Username]\AppData\Roaming\Ableton\Live x.x.x\Preferences\User Remote Scripts

  1. Create a folder called AbletonMCP and paste the file
  2. Launch Ableton Live and select "AbletonMCP" in Control Surface settings

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
Comparison generated from public README + GitHub signals. Last updated automatically.