Skip to main content

Claude Desktop Integration

Integrate the 60db MCP Server with Claude Desktop.

Configuration

Step 1: Build the Server

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

{
  "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"
      }
    }
  }
}
Use absolute paths. Relative paths may not work.

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

export SIXTYDB_API_KEY=sk_your_api_key_here

Next Steps