Media
Map world tunings — 7-limit just blues, Arabic maqamat (Rast/Bayati/Hijaz/Saba) on 24-EDO quarter tones, the 22-shruti table, gamelan slendro/pelog, 31-EDO, 53-EDO and the A440 harmonic grid — onto nearest-note + RPN fine tuning, MPE 14-bit bends at ±2/±24/±48/±96 semitones, MIDI 2.0 32-bit pitch bend, the MIDI 2.0 Pitch 7.9 note attribute, and a Scala .scl export.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/blues-ragas-modes-microtonal-pitch-bend-midi-2-and-maqam-tuning-tutor' \
-H 'Content-Type: application/json' \
-d '{"scale":"maqam-rast","rootMidi":60,"a4Hz":440,"bendRangeSemitones":48,"writeSclFile":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/blues-ragas-modes-microtonal-pitch-bend-midi-2-and-maqam-tuning-tutor| Name | Type | Required | Description |
|---|---|---|---|
| scale | select | Yes | — |
| rootMidi | number | No | — |
| a4Hz | number | No | — |
| bendRangeSemitones | select | No | — |
| writeSclFile | checkbox | No | — |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-blues-ragas-modes-microtonal-pitch-bend-midi-2-and-maqam-tuning-tutor": {
"name": "blues-ragas-modes-microtonal-pitch-bend-midi-2-and-maqam-tuning-tutor",
"description": "Map world tunings — 7-limit just blues, Arabic maqamat (Rast/Bayati/Hijaz/Saba) on 24-EDO quarter tones, the 22-shruti table, gamelan slendro/pelog, 31-EDO, 53-EDO and the A440 harmonic grid — onto nearest-note + RPN fine tuning, MPE 14-bit bends at ±2/±24/±48/±96 semitones, MIDI 2.0 32-bit pitch bend, the MIDI 2.0 Pitch 7.9 note attribute, and a Scala .scl export.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=blues-ragas-modes-microtonal-pitch-bend-midi-2-and-maqam-tuning-tutor",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "blues-ragas-modes-microtonal-pitch-bend-midi-2-and-maqam-tuning-tutor",
"arguments": {
"scale": "maqam-rast",
"rootMidi": 60,
"a4Hz": 440,
"bendRangeSemitones": 48,
"writeSclFile": true
}
}
}HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]