respondAudio
Convert text prompts into audio responses using customizable voice options for clear and reproducible speech generation, powered by MCPollinations Multimodal MCP Server.
Instructions
Generate an audio response to a text prompt and play it through the system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prompt | Yes | The text prompt to respond to with audio | |
seed | No | Seed for reproducible results (default: random) | |
voice | No | Voice to use for audio generation (default: "alloy"). Available options: "alloy", "echo", "fable", "onyx", "nova", "shimmer", "coral", "verse", "ballad", "ash", "sage", "amuch", "dan" |
Input Schema (JSON Schema)
{
"properties": {
"prompt": {
"description": "The text prompt to respond to with audio",
"type": "string"
},
"seed": {
"description": "Seed for reproducible results (default: random)",
"type": "number"
},
"voice": {
"description": "Voice to use for audio generation (default: \"alloy\"). Available options: \"alloy\", \"echo\", \"fable\", \"onyx\", \"nova\", \"shimmer\", \"coral\", \"verse\", \"ballad\", \"ash\", \"sage\", \"amuch\", \"dan\"",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}