Media
Generate exact A=440, A=432, or custom equal-tempered reference notes and practice scales.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/audio-tuning-reference-generator' \
-H 'Content-Type: application/json' \
-d '{"mode":"sustained","rootNote":"A","octave":4,"tuningA4Hz":440,"noteDurationSeconds":2,"outputFormat":"wav"}'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/audio-tuning-reference-generator| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | Yes | — |
| rootNote | select | Yes | — |
| octave | number | Yes | — |
| tuningA4Hz | number | Yes | — |
| noteDurationSeconds | number | Yes | — |
| outputFormat |
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-audio-tuning-reference-generator": {
"name": "audio-tuning-reference-generator",
"description": "Generate exact A=440, A=432, or custom equal-tempered reference notes and practice scales.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=audio-tuning-reference-generator",
"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": "audio-tuning-reference-generator",
"arguments": {
"mode": "sustained",
"rootNote": "A",
"octave": 4,
"tuningA4Hz": 440,
"noteDurationSeconds": 2,
"outputFormat": "wav"
}
}
}Questions or issues? Contact [email protected]
| select |
| Yes |
| — |
File result
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}