estimate_music_cost
Calculate music generation costs for Suno V5 based on duration and audio format to plan media production budgets.
Instructions
Estimate the cost of music generation. Cost: $0.68 (Suno V5)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| duration | No | Music duration in seconds | |
| audio_format | No | Output format. WAV adds +$0.10 | mp3 |
Implementation Reference
- mcp/vap_mcp_proxy.py:197-218 (handler)The tool 'estimate_music_cost' is not explicitly handled in `handle_tools_call`, so it falls through to the default `make_request` call, which proxies it to the remote MCP API.
tool_name = params.get("name", "") arguments = params.get("arguments", {}) # ═══════════════════════════════════════════════════════════════════ # VIDEO TOOL HANDLERS (Directive #240) # ═══════════════════════════════════════════════════════════════════ if tool_name == "generate_video": return _handle_generate_video(arguments) if tool_name == "estimate_video_cost": return _handle_estimate_video_cost(arguments) if tool_name == "get_task": return _handle_get_task(arguments) # Default: forward to MCP API response = make_request("/tools/call", { "name": tool_name, "arguments": arguments }) return response