Skip to main content

Voices

Manage and use voices for text-to-speech synthesis through the MCP server.

Available Tools

ToolDescription
60db_list_voicesList available voices with filtering
60db_get_voiceGet detailed voice information
60db_create_voiceCreate a cloned voice from audio sample

List Voices

Browse available voices by language, gender, and type:
// List English female voices
{
  "language": "en-US",
  "gender": "Female",
  "limit": 10
}
Response:
# Available Voices

| Voice ID | Name | Language | Gender |
|----------|------|----------|--------|
| voice_abc123 | Sarah | en-US | Female |
| voice_def456 | Emma | en-US | Female |

Get Voice Details

Retrieve detailed information about a voice:
{
  "voice_id": "voice_abc123"
}

Create Custom Voice

Create a cloned voice from an audio sample:
{
  "name": "Brand Voice",
  "sample_url": "https://example.com/sample.mp3",
  "language": "en-US",
  "gender": "Female"
}
Voice cloning requires a 30+ second audio sample with clear speech.

Usage in Claude

You: List all available English voices
You: Get details for voice "Sarah"
You: Create a custom voice from this sample
  • TTS - Use voices for speech synthesis