> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Voices

# Voices

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

## Available Tools

| Tool                | Description                             |
| ------------------- | --------------------------------------- |
| `60db_list_voices`  | List available voices with filtering    |
| `60db_get_voice`    | Get detailed voice information          |
| `60db_create_voice` | Create a cloned voice from audio sample |

## List Voices

Browse available voices by language, gender, and type:

```typescript theme={null}
// List English female voices
{
  "language": "en-US",
  "gender": "Female",
  "limit": 10
}
```

**Response**:

```markdown theme={null}
# 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:

```typescript theme={null}
{
  "voice_id": "voice_abc123"
}
```

## Create Custom Voice

Create a cloned voice from an audio sample:

```typescript theme={null}
{
  "name": "Brand Voice",
  "sample_url": "https://example.com/sample.mp3",
  "language": "en-US",
  "gender": "Female"
}
```

<Callout type="info">
  Voice cloning requires a 30+ second audio sample with clear speech.
</Callout>

## Usage in Claude

```
You: List all available English voices
You: Get details for voice "Sarah"
You: Create a custom voice from this sample
```

## Related

* [TTS](/mcp-server/tts) - Use voices for speech synthesis
