async_voice_clone_url
Clone a voice from a URL audio file to generate a unique speaker ID for use in text-to-speech tools via the Mobvoi TTS MCP Server. Ensure cost awareness when utilizing this API-enabled feature.
Instructions
Async version of voice_clone. Clone a voice from a given url audio file. This tool will return a speaker id which can be used in text_to_speech tool.
⚠️ COST WARNING: This tool makes an API call to Mobvoi TTS service which may incur costs. Only use when explicitly requested by the user.
Args:
wav_uri (str): The url of the audio file to clone.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
wav_uri | Yes |
Input Schema (JSON Schema)
{
"properties": {
"wav_uri": {
"title": "Wav Uri",
"type": "string"
}
},
"required": [
"wav_uri"
],
"title": "async_voice_clone_urlArguments",
"type": "object"
}