Media
Apply a multi-band equalizer (EQ)
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/audio-equalizer' \
-F 'file=@/path/to/audioFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/audio-equalizer' \
-F 'audioFile=/path/to/file.ext' \
-F 'bassGainDb=0' \
-F 'midGainDb=0' \
-F 'trebleGainDb=0' \
-F 'bassFreq=100' \
-F 'midFreq=1000' \
-F 'trebleFreq=8000' \
-F 'widthQ=1' \
-F 'outputFormat=mp3'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/audio-equalizer| Name | Type | Required | Description |
|---|---|---|---|
| audioFile | fileupload required | Yes | — |
| bassGainDb | number | No | — |
| midGainDb | number | No | — |
| trebleGainDb | number | No | — |
| bassFreq | number | 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-audio-equalizer": {
"name": "audio-equalizer",
"description": "Apply a multi-band equalizer (EQ)",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=audio-equalizer",
"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-equalizer",
"arguments": {
"audioFile": "https://example.com/file.ext",
"bassGainDb": 0,
"midGainDb": 0,
"trebleGainDb": 0,
"bassFreq": 100,
"midFreq": 1000,
"trebleFreq": 8000,
"widthQ": 1,
"outputFormat": "mp3"
}
}
}| midFreq | number | No | — |
| trebleFreq | number | No | — |
| widthQ | number | No | — |
| outputFormat | select | No | — |
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)"
}Questions or issues? Contact [email protected]