@mseep/ableton-copilot-mcp
Version:
Ableton Live MCP depend on Ableton JS
10 lines • 357 B
JavaScript
import { Ableton } from 'ableton-js';
import { setupRecordModeListener } from './utils/record-utils.js';
export let ableton;
export async function initAbleton(logger) {
ableton = new Ableton({ logger });
// Establishes a connection with Live
await ableton.start();
setupRecordModeListener(ableton.song);
}
//# sourceMappingURL=ableton.js.map