> ## 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.

# Claude desktop

# Claude Desktop Integration

Integrate the 60db MCP Server with Claude Desktop.

## Configuration

### Step 1: Build the Server

```bash theme={null}
cd /path/to/mcp-server
npm install
npm run build
```

### Step 2: Locate Claude Desktop Config

**macOS**:

```
~/Library/Application Support/Claude/claude_desktop_config.json
```

**Windows**:

```
%APPDATA%/Claude/claude_desktop_config.json
```

### Step 3: Add Configuration

```json theme={null}
{
  "mcpServers": {
    "60db": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-server/dist/index.js"],
      "env": {
        "SIXTYDB_API_KEY": "sk_your_api_key_here",
        "SIXTYDB_API_BASE_URL": "https://api.60db.ai"
      }
    }
  }
}
```

<Callout type="warning">
  Use absolute paths. Relative paths may not work.
</Callout>

### Step 4: Restart Claude Desktop

Quit and restart Claude Desktop.

## Usage Examples

### Generate Speech

```
You: Convert "Hello, world!" to speech
```

### Transcribe Audio

```
You: Transcribe this audio: https://example.com/meeting.mp3
```

### List Voices

```
You: What English voices are available?
```

### Create Voice

```
You: Create a voice named "Brand Voice" from this sample
```

## Troubleshooting

### Server Not Appearing

1. Check the config file path
2. Verify the server path is absolute
3. Check the API key is set
4. Restart Claude Desktop

### Authentication Error

```bash theme={null}
export SIXTYDB_API_KEY=sk_your_api_key_here
```

## Next Steps

* [MCP Inspector](/mcp-server/mcp-inspector) - Test the server
