@modelcontextprotocol/server-sheet-music 0.4.1 → 0.4.2
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 +21 -0
- package/dist/index.js +3644 -44
- package/dist/mcp-app.html +42 -42
- package/dist/server.js +1732 -1731
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -9,6 +9,27 @@ 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
|
+
|
|
12
33
|
## Features
|
|
13
34
|
|
|
14
35
|
- **Audio Playback**: Built-in audio player with play/pause and loop controls
|