- MCP Server with audio fallback, sample management - Song generator with bus routing - Reference listener and audio resampler - Vector-based sample search - Master chain with limiter and calibration - Fix: Audio fallback now works without M4L - Fix: Full song detection in sample loader Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
403 B
Python
18 lines
403 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Wrapper para mantener el servidor MCP vivo
|
|
"""
|
|
import sys
|
|
import os
|
|
import asyncio
|
|
|
|
# Añadir el path del proyecto
|
|
sys.path.insert(0, r'C:\ProgramData\Ableton\Live 12 Suite\Resources\MIDI Remote Scripts\AbletonMCP_AI')
|
|
|
|
# Importar el servidor
|
|
from MCP_Server.server import mcp
|
|
|
|
if __name__ == "__main__":
|
|
# Iniciar el servidor MCP con stdio
|
|
mcp.run(transport="stdio")
|