VibeVoice TTS Server

VibeVoice TTS Server

An OpenAI-compatible text-to-speech API server that enables voice cloning, long-form generation, and can be used as a Claude Code tool for speech synthesis.

Category
访问服务器

README

VibeVoice TTS Server

Local OpenAI-compatible text-to-speech API server powered by VibeVoice-7B. Generates up to 45 minutes of speech in a single request, with voice cloning from reference audio.

Features

  • OpenAI-compatible API — drop-in replacement for POST /v1/audio/speech
  • Voice cloning — upload reference audio to clone any speaker's voice
  • Long-form generation — natively supports up to ~45 minutes per request (full podcast episodes)
  • On-demand model loading — loads the 7B model on first request, auto-unloads after idle timeout to free VRAM
  • Multiple formats — MP3, WAV, OPUS, FLAC, AAC, PCM
  • MCP server — use as a Claude Code tool for speech synthesis
  • Platform detection — CUDA > MPS > CPU with optional 4-bit quantization

Quickstart

1. Install

pip install -e .

# With CUDA flash attention:
pip install -e ".[cuda]"

# With 4-bit quantization:
pip install -e ".[quant]"

Requires ffmpeg for MP3/OPUS/AAC encoding:

# macOS
brew install ffmpeg

# Ubuntu/Debian
sudo apt install ffmpeg

2. Start the server

vibevoice-tts-server

The model downloads on first request (~14 GB) and loads into VRAM/RAM. Subsequent requests reuse the loaded model.

Options:

vibevoice-tts-server --device cuda --port 8100 --idle-timeout 600

3. Generate speech

curl -X POST http://localhost:8101/v1/audio/speech \
  -H "Content-Type: application/json" \
  -d '{"input": "Hello world, this is VibeVoice!", "voice": "alloy"}' \
  --output hello.mp3

4. Voice cloning with reference audio

Upload a reference audio file to clone a speaker's voice:

curl -X POST http://localhost:8101/v1/audio/speech/upload \
  -F "input=Welcome to the show, I'm your host." \
  -F "voice=alloy" \
  -F "response_format=wav" \
  -F "reference_audio=@speaker_sample.wav" \
  --output cloned.wav

5. Multi-speaker generation (one-shot)

VibeVoice natively generates multi-speaker audio in a single pass. Format the input with Speaker N: prefixes and upload one reference audio file per speaker:

curl -X POST http://localhost:8101/v1/audio/speech/upload \
  -F "input=Speaker 1: Welcome to the show, I'm your host.
Speaker 2: Thanks for having me, great to be here.
Speaker 1: Let's dive right in." \
  -F "response_format=wav" \
  -F "reference_audio=@host_voice.wav" \
  -F "reference_audio=@guest_voice.wav" \
  --output podcast.wav

Or via the JSON endpoint with file paths:

curl -X POST http://localhost:8101/v1/audio/speech \
  -H "Content-Type: application/json" \
  -d '{
    "input": "Speaker 1: Welcome to the show.\nSpeaker 2: Thanks for having me.",
    "instructions": "{\"reference_audio\": [\"/path/to/host.wav\", \"/path/to/guest.wav\"]}"
  }' \
  --output podcast.mp3

Single-speaker voice cloning also works with a single file path:

curl -X POST http://localhost:8101/v1/audio/speech \
  -H "Content-Type: application/json" \
  -d '{
    "input": "Welcome to the show.",
    "voice": "alloy",
    "instructions": "{\"reference_audio\": \"/path/to/speaker_sample.wav\"}"
  }' \
  --output cloned.mp3

API Reference

POST /v1/audio/speech

JSON body (OpenAI-compatible):

Field Type Default Description
input string required Text to synthesize
voice string "alloy" Voice preset or speaker name
model string "vibevoice-tts" Model identifier
response_format string "mp3" mp3, wav, opus, flac, aac, pcm
speed float 1.0 Speed multiplier (0.25 - 4.0)
instructions string null JSON string with advanced params (see below)

Instructions JSON fields:

Field Type Description
reference_audio string or string[] Path(s) to reference audio — single path for one speaker, array for multi-speaker
cfg_scale float Classifier-free guidance scale (default: 1.3)
n_diffusion_steps int Diffusion denoising steps (default: 10)
max_new_tokens int Audio token limit at 7.5 Hz (0 = unlimited)

Returns raw audio bytes with the appropriate Content-Type header.

POST /v1/audio/speech/upload

Multipart form — same fields as above, plus:

Field Type Description
reference_audio file(s) One or more audio files for voice cloning — upload multiple for multi-speaker (ordered by Speaker 1, 2, etc.)

GET /v1/audio/voices

List available voice presets.

GET /v1/models

List available models.

GET /health

Server status, model load state, device info.

Voice Presets

OpenAI Name VibeVoice Speaker
alloy Emma
echo Carter
fable Davis
onyx Mike
nova Grace
shimmer Frank
sage Samuel

Configuration

All settings can be set via environment variables with the VIBEVOICE_TTS_ prefix:

VIBEVOICE_TTS_HOST=0.0.0.0
VIBEVOICE_TTS_PORT=8101
VIBEVOICE_TTS_MODEL_ID=vibevoice/VibeVoice-7B
VIBEVOICE_TTS_DEVICE=auto          # auto, cuda, mps, cpu
VIBEVOICE_TTS_DTYPE=auto           # auto, bfloat16, float32
VIBEVOICE_TTS_IDLE_TIMEOUT=300     # seconds before unloading model (0 = never)
VIBEVOICE_TTS_MAX_NEW_TOKENS=0     # 0 = unlimited; tokens are audio frames at 7.5 Hz
VIBEVOICE_TTS_CFG_SCALE=1.3
VIBEVOICE_TTS_N_DIFFUSION_STEPS=10
VIBEVOICE_TTS_QUANTIZE_4BIT=false

MCP Server

Use as a Claude Code tool:

vibevoice-tts-mcp

Add to your Claude Code MCP config:

{
  "mcpServers": {
    "vibevoice-tts": {
      "command": "vibevoice-tts-mcp",
      "args": ["--device", "auto"]
    }
  }
}

Tools: synthesize_speech, list_voices, get_tts_status

Running Tests

pip install -e ".[test]"
pytest tests/ -v

Audio Token Math

VibeVoice generates audio tokens at 7.5 Hz (7.5 tokens per second of audio). The 7B model has a 32K context window shared between text input tokens and audio output tokens.

Tokens Duration
450 ~1 minute
4,500 ~10 minutes
13,500 ~30 minutes
20,250 ~45 minutes

By default, max_new_tokens=0 (unlimited), allowing the model to generate until it finishes the input text naturally.

Licensing

This server code is released under the MIT License.

Model license note: Microsoft released VibeVoice-7B under the MIT License. However, Microsoft's model card states the model is "limited to research purpose use" and later removed the TTS code from their official repository citing misuse concerns. Community forks and model weights remain available under MIT. Users should review the model card and applicable terms before deploying in production.

This project is an independent wrapper and is not affiliated with or endorsed by Microsoft.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选