@modelcontextprotocol/server-sheet-music 0.4.1 → 1.0.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 +39 -0
- package/dist/index.js +3644 -44
- package/dist/mcp-app.html +42 -42
- package/dist/server.js +1733 -1732
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -9,6 +9,45 @@ A demo MCP App that renders [ABC notation](https://en.wikipedia.org/wiki/ABC_not
|
|
|
9
9
|
</tr>
|
|
10
10
|
</table>
|
|
11
11
|
|
|
12
|
+
## MCP Client Configuration
|
|
13
|
+
|
|
14
|
+
Add to your MCP client configuration (stdio transport):
|
|
15
|
+
|
|
16
|
+
```json
|
|
17
|
+
{
|
|
18
|
+
"mcpServers": {
|
|
19
|
+
"sheet-music": {
|
|
20
|
+
"command": "npx",
|
|
21
|
+
"args": [
|
|
22
|
+
"-y",
|
|
23
|
+
"--silent",
|
|
24
|
+
"--registry=https://registry.npmjs.org/",
|
|
25
|
+
"@modelcontextprotocol/server-sheet-music",
|
|
26
|
+
"--stdio"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Local Development
|
|
34
|
+
|
|
35
|
+
To test local modifications, use this configuration (replace `~/code/ext-apps` with your clone path):
|
|
36
|
+
|
|
37
|
+
```json
|
|
38
|
+
{
|
|
39
|
+
"mcpServers": {
|
|
40
|
+
"sheet-music": {
|
|
41
|
+
"command": "bash",
|
|
42
|
+
"args": [
|
|
43
|
+
"-c",
|
|
44
|
+
"cd ~/code/ext-apps/examples/sheet-music-server && npm run build >&2 && node dist/index.js --stdio"
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
```
|
|
50
|
+
|
|
12
51
|
## Features
|
|
13
52
|
|
|
14
53
|
- **Audio Playback**: Built-in audio player with play/pause and loop controls
|