@xiaolaa2/ableton-copilot-mcp
Version:
Ableton Live MCP depend on Ableton JS
14 lines • 435 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,
heartbeatInterval: 5000,
commandTimeoutMs: 5000,
});
// Establishes a connection with Live
await ableton.start();
setupRecordModeListener(ableton.song);
}
//# sourceMappingURL=ableton.js.map