Media
Удаляет узкую полосу (напр. гул сети)
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/audio-notch-filter' \
-F 'file=@/path/to/audioFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/ru/api/tools/audio-notch-filter' \
-F 'audioFile=/path/to/file.ext' \
-F 'centerHz=60' \
-F 'widthHz=10' \
-F 'depthDb=-30' \
-F 'outputFormat=mp3'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/audio-notch-filter| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| audioFile | fileнужна загрузка | Да | — |
| centerHz | number | Нет | — |
| widthHz | number | Нет | — |
| depthDb | number | Нет | — |
| outputFormat | select | Нет | — |
Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-audio-notch-filter": {
"name": "audio-notch-filter",
"description": "Удаляет узкую полосу (напр. гул сети)",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=audio-notch-filter",
"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-notch-filter",
"arguments": {
"audioFile": "https://example.com/file.ext",
"centerHz": 60,
"widthHz": 10,
"depthDb": -30,
"outputFormat": "mp3"
}
}
}Файловый результат
{
"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)"
}Вопросы или проблемы? Свяжитесь с [email protected]