list_voices
Explore and retrieve all available voice options for text-to-speech and voice cloning services within the MiniMax MCP JS environment. Specify voice types to filter results.
Instructions
List all available voices. Only supported when api_host is https://api.minimax.chat.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
voiceType | No | Type of voices to list, values: ["all", "system", "voice_cloning"] | all |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"voiceType": {
"default": "all",
"description": "Type of voices to list, values: [\"all\", \"system\", \"voice_cloning\"]",
"type": "string"
}
},
"type": "object"
}