Media
Визуализирует фазовую корреляцию для моно-совместимости
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-stereo-correlation-meter' \
-H 'Content-Type: application/json' \
-d '{"filename":"audioFile.ext","contentType":"application/octet-stream","size":12345}'
# 2) PUT the file bytes directly to the presigned uploadUrl
curl -X PUT '<presigned uploadUrl>' \
--data-binary @/path/to/file.ext
# 3) Call the tool, passing the returned storageKey for each file field
curl -X POST 'https://api.elysiatools.com/ru/api/tools/audio-stereo-correlation-meter' \
-F 'audioFile=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'width=800' \
-F 'height=400' \
-F 'showPhasing=false' \
-F 'phaseTolerance=0' \
-F 'phaseAngle=170' \
-F 'minDuration=2'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/audio-stereo-correlation-meter| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| audioFile | fileнужна загрузка | Да | — |
| width | text | Нет | — |
| height | text | Нет | — |
| showPhasing | checkbox | Нет | — |
| phaseTolerance | number | Нет | — |
| phaseAngle | number | Нет | — |
| minDuration | number | Нет | — |
Файловый результат
{
"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)"
}Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-audio-stereo-correlation-meter": {
"name": "audio-stereo-correlation-meter",
"description": "Визуализирует фазовую корреляцию для моно-совместимости",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=audio-stereo-correlation-meter",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}После подключения к SSE-endpoint выведите список доступных инструментов:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Вызовите инструмент по его id; аргументы формируются из его параметров:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "audio-stereo-correlation-meter",
"arguments": {
"audioFile": "https://example.com/file.ext",
"width": "800",
"height": "400",
"showPhasing": false,
"phaseTolerance": 0,
"phaseAngle": 170,
"minDuration": 2
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]