Run a minimal read-only validation of the existing ClaudeMCP_Remote Control Surface on Windows and capture raw TCP request/response output for review.
- This ASUS runtime path was validated against Ableton Live
12.3.6on Windows. - On this machine,
ClaudeMCP_Remotebecame selectable only after being copied into Ableton's built-in scripts directory underC:\ProgramData\Ableton\Live 12 Suite\Resources\MIDI Remote Scripts. - WSL-side socket checks did not reliably see the Ableton listener even when the script was active.
- For this machine, treat Windows-native PowerShell or Command Prompt as the authoritative runtime validation environment.
- Close Ableton Live.
- Copy the repo's
ClaudeMCP_Remotefolder into the built-in Ableton MIDI Remote Scripts directory:
Copy-Item -Recurse -Force .\ClaudeMCP_Remote "C:\ProgramData\Ableton\Live 12 Suite\Resources\MIDI Remote Scripts\ClaudeMCP_Remote"- Start Ableton Live.
- Open
Options > Preferences > Link, Tempo & MIDI. - In an empty
Control Surfaceslot, chooseClaudeMCP_Remote. - Leave the paired
InputandOutputfields unset unless a separate test requires them.
Note:
- Upstream docs suggest automatic loading after install, but current validated behavior on this machine still requires explicit Control Surface selection.
- The repo now includes
scripts/windows/deploy_control_surface.ps1to make this copy step repeatable.
- After selecting the Control Surface, wait a few seconds for Ableton to finish loading.
- In PowerShell or Command Prompt, check for a listener on port
9004:
Get-NetTCPConnection -LocalPort 9004 -ErrorAction SilentlyContinue | Format-Table -AutoSize LocalAddress,LocalPort,State,OwningProcessExpected shape:
- A line showing
127.0.0.1 9004 Listen <pid>.
- If needed, inspect the Ableton log for
ClaudeMCPstartup messages or exceptions:
Get-Content "$env:APPDATA\Ableton\Live 12.3.6\Preferences\Log.txt" -Tail 200If the exact version directory differs, adjust the Live 12.3.6 segment to match the installed version.
From the repo root:
.\scripts\windows\run_smoke_test.ps1Equivalent direct invocation:
py -3 .\scripts\poc\smoke_test_client.py --host 127.0.0.1 --port 9004 --log-file .\logs\smoke-test-run.txtDefault action order:
pinghealth_checkget_session_info
If a narrower first probe is preferred:
python scripts\poc\smoke_test_client.py --action ping --log-file logs\smoke-test-ping.txtClient-side capture:
- Use
--log-file logs\smoke-test-run.txtto append raw request and raw response lines.
Ableton-side capture:
Get-Content "$env:APPDATA\Ableton\Live 12.3.6\Preferences\Log.txt" -Tail 200Optional transcript capture in PowerShell:
Start-Transcript -Path .\logs\powershell-session.txt
.\scripts\windows\run_smoke_test.ps1
Stop-Transcript- Ableton remains running after the Control Surface is selected.
netstatshows a listener on port9004.- The smoke client prints the raw JSON request and raw JSON response for each action.
- The first action is read-only.
- At least one response is valid JSON and includes
"ok": true. - The log file under
logs\contains the captured raw request/response output.
Control Surface does not appear in Ableton:
- Confirm the installed folder name is exactly
ClaudeMCP_Remote. - Confirm the folder contains both
__init__.pyandliveapi_tools.py. - Confirm the script was copied into the built-in
C:\ProgramData\Ableton\Live 12 Suite\Resources\MIDI Remote Scriptsdirectory on this machine. - Restart Ableton after copying the files.
Connection refused:
- Ableton is not running.
ClaudeMCP_Remoteis not selected as a Control Surface.- The script failed during startup before opening the socket.
Port 9004 is already in use:
- Another process is already bound to the port.
- An earlier Ableton instance did not exit cleanly.
Client times out:
- Ableton loaded but the main-thread queue is blocked.
- The socket accepted the connection but the script did not produce a response within the timeout window.
Malformed or unexpected response:
- Protocol details are inferred from repo code and examples and may differ from external guidance.
- Review the raw response and the Ableton log before assuming the client is wrong.
Ableton log path not found:
- The installed Live version directory differs from the example path.
- Search under
%APPDATA%\Ableton\for the activeLive x.x.x\Preferences\Log.txt.
WSL cannot see the listener:
- On this machine, that is expected.
- Use Windows-native PowerShell or Command Prompt for runtime validation instead of WSL socket checks.