Using CLI to generate chords

A command-line (CLI) version of our chord generation tool is now available on GitHub: chord-synth. This version supports batch processing for generating multiple .wav files simultaneously. For a more intuitive experience, you can integrate it with AI assistants like Claude Code, ChatGPT, or Gemini to control the tool using natural language instructions.

Manual CLI Command

If you want to run it directly from your terminal without the AI agent, use the following command:

# Install globally
>npm install -g chord-synth

>chord-synth --preset "Am Dm G C" --instrument violin --bpm 128 --output violin_progression.wav

ChatGPT Codex

I have a mcp tool to generate chord wav files at https://github.com/Misfits-Rebels-Outcasts/chord-synth, use it generate a chord progression for violin "Am Dm G C" at 128 bpm

Claude Code

claude mcp add chord-synth -- npx chord-synth --mcp

Then ask Claude: "Generate a sad violin arpeggio over Am F C G at 80 BPM" — it will call generate_wav directly.