mcp-music-studio 0.2.1 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -1
- package/dist/mcp-app.html +57 -53
- package/dist/server.d.ts +3 -4
- package/dist/server.js +1759 -1658
- package/dist/src/shared/tool-defs.d.ts +146 -0
- package/dist/src/version.d.ts +1 -0
- package/dist/strudel-app.html +34 -34
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -33,6 +33,7 @@ Write sheet music → see it rendered → hear it played with multi-instrument a
|
|
|
33
33
|
- **30 instruments** — piano, strings, brass, woodwinds, synths — selectable by name
|
|
34
34
|
- **Visual sheet music** — notes highlight as they play
|
|
35
35
|
- **Streaming render** — sheet music appears as the AI types
|
|
36
|
+
- **WAV download** — export audio as WAV files directly from the UI
|
|
36
37
|
- **`get-music-guide`** — 7 reference topics (instruments, drums, ABC syntax, arrangements, genres, styles, MIDI directives)
|
|
37
38
|
|
|
38
39
|
### Live Performance (Strudel)
|
|
@@ -42,6 +43,7 @@ Write code → hear it play → edit in a live REPL.
|
|
|
42
43
|
- **72 drum machine banks** + **128 GM instruments** + built-in synths
|
|
43
44
|
- **Full effects chain** — filters, reverb, delay, FM synthesis
|
|
44
45
|
- **Editable REPL** — users can tweak the code and hear changes instantly
|
|
46
|
+
- **Record & download** — capture live audio and export as WAV
|
|
45
47
|
- **`get-strudel-guide`** — 7 reference topics (mini-notation, sounds, effects, patterns, genres, tips, advanced)
|
|
46
48
|
|
|
47
49
|
### Shared
|
|
@@ -163,7 +165,7 @@ On Windows, `npx` is a `.cmd` file and requires a shell wrapper:
|
|
|
163
165
|
<details>
|
|
164
166
|
<summary>Render modes (for non-ext-apps clients)</summary>
|
|
165
167
|
|
|
166
|
-
|
|
168
|
+
Clients that support ext-apps render the interactive UI inline automatically (`auto` mode). For clients that don't (Cherry Studio, CLI environments), use `--render-mode`:
|
|
167
169
|
|
|
168
170
|
| Mode | Behavior |
|
|
169
171
|
|------|----------|
|
|
@@ -195,6 +197,16 @@ The server auto-detects ext-apps support. For clients that don't support it (Che
|
|
|
195
197
|
| `get-strudel-guide` | Strudel reference (7 topics: sounds, effects, patterns, genres...) |
|
|
196
198
|
| `search-music-docs` | Semantic search over strudel.cc and ABCJS docs |
|
|
197
199
|
|
|
200
|
+
## Prompts
|
|
201
|
+
|
|
202
|
+
Slash-command / menu entry points, in clients that surface MCP prompts:
|
|
203
|
+
|
|
204
|
+
| Prompt | What it does |
|
|
205
|
+
|--------|--------------|
|
|
206
|
+
| `compose-beat` | Generate + play a Strudel pattern in a genre (args: `genre`, `mood?`) |
|
|
207
|
+
| `harmonize-melody` | Add chords/accompaniment to an ABC melody and play it (args: `melody`, `style?`) |
|
|
208
|
+
| `arrange-tune` | Turn a melody/idea into a multi-voice arrangement (args: `tune`, `instrumentation?`) |
|
|
209
|
+
|
|
198
210
|
## Development
|
|
199
211
|
|
|
200
212
|
```bash
|