ableton-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
ableton-mcp by jpoindexter | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 22 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | MediaAI / LLM ToolsDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
ableton-mcp · Summary
Ableton Live MCP server with 200+ tools for music production, AI-generated patterns, and full DAW control.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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
- Download
AbletonMCP_Remote_Script/__init__.pyfrom this repo - 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
- Create a folder called
AbletonMCPand paste the file - Launch Ableton Live and select "AbletonMCP" in Control Surface settings
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.