Token导航 LogoToken导航TokenDH.com
Qwen3 Tts MCP logo
音视频stdio官方级别未说明来源级核验

Qwen3 Tts MCP

MCP Server

Qwen3 TTS MCP Server是一个基于Claude Code的文本转语音服务,支持预设语音、自定义语音生成和语音克隆等功能。

工具数

5

提示词数

0

GitHub Stars

0

资源数

0
语音音频语音合成PythonClaudeClaude

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

Allen-han21

提供方

Allen-han21

最后核验

2026/5/17 20:20

运行时

Python

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

python3 -m venv .venv

详细介绍

Qwen3-TTS MCP服务器

可以在Claude Code中使用Qwen3TTS的模型上下文协议(MCP)服务器。

特性

  • tts_speak:将文本转换为预设语音(情感/速度可调)
  • tts_设计:通过文本说明生成自定义语音(“冷静的英国解说员”等)
  • tts_clone:将语音复制到参考音频(建议5-10秒)
  • tts_voices:查看可用语音列表
  • tts访谈:访谈模式-用不同的语音阅读问题

先决条件

要使用此MCP服务器,请先 Qwen3TTS引擎必须安装。

1.安装Qwen3TTS

# Clone the TTS engine
git clone https://github.com/kapi2800/qwen3-tts-apple-silicon.git ~/Dev/tools/qwen3-tts
cd ~/Dev/tools/qwen3-tts

# Setup Python environment
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

# Install ffmpeg (required for audio conversion)
brew install ffmpeg

2.下载型号

从HuggingFace下载模型 models/ 保存到文件夹:

型号用例下载
CustomVoice预设语音+情绪调节下载
VoiceDesign通过文本说明生成语音下载
Base语音复制 下载
~/Dev/tools/qwen3-tts/models/
├── Qwen3-TTS-12Hz-1.7B-CustomVoice-8bit/
├── Qwen3-TTS-12Hz-1.7B-VoiceDesign-8bit/
└── Qwen3-TTS-12Hz-1.7B-Base-8bit/

安装

1.克隆此存储库

git clone https://github.com/Allen-han21/qwen3-tts-mcp.git
cd qwen3-tts-mcp

2.设置Python环境

python3 -m venv .venv
source .venv/bin/activate
pip install -e .

3.配置克劳德代码

~/.claude/settings.json将MCP服务器添加到:

{
  "mcpServers": {
    "qwen3-tts": {
      "command": "/path/to/qwen3-tts-mcp/.venv/bin/python",
      "args": ["-m", "qwen3_tts_mcp.server"],
      "env": {
        "QWEN3_TTS_PATH": "/Users/YOUR_USERNAME/Dev/tools/qwen3-tts"
      }
    }
  }
}

用法

在Claude Code中使用:

基本语音合成

tts_speak으로 "안녕하세요" 읽어줘

语音设置

tts_speak으로 "오늘 날씨가 좋네요" Sohee 목소리로 읽어줘 (한국어)

情绪调节

tts_speak으로 "정말 기쁩니다!" 신나는 목소리로 읽어줘

生成自定义语音

tts_design으로 "차분한 남성 내레이터" 목소리로 "오늘의 뉴스입니다" 읽어줘

语音复制

tts_clone으로 ~/reference.wav 파일의 목소리로 "안녕하세요" 읽어줘

可用声音

预设扬声器

语言演讲者
中文Ryan、Aiden、Ethan、Chelsie、Serena、Vivian
中文薇薇安、瑟琳娜、叔叔_傅、迪伦、孙
日语小野_安娜
朝鲜语Sohee

面试预设

  • interviewer_calm:冷静专业的面试官
  • interviewer_friendly:热情亲切的面试官
  • interviewee_nervous:有点紧张的面试者
  • interviewee_confident:自信的面试者

演出

基于M4 MacBook Air(36GB RAM):

度量
实时系数~1.4x
峰值内存~6.8GB
令牌/秒~21

需求

  • 带苹果硅(M1/M2/M3/M4)的macOS
  • Python 3.10+
  • Qwen3-TTS发动机已安装
  • 内存:~6GB(1.7B型号)

许可证

麻省理工学院

相关项目

目录标签

目录标签

语音音频语音合成PythonClaude文本转语音本地部署语音克隆多语言支持

支持客户端

Claude

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

运行时(runtime,运行环境)

Python

工具数量(toolCount,工具数)

5

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdionone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP

上一个 MCP

Quizlar MCP

Quizlar is the learning MCP server. It turns whatever source the user brings — a YouTube lecture, a PDF, a URL, a textbook passage, or a pasted block of notes — into flashcards, then runs interactive quizzes with FSRS spaced-repetition scheduling so the material actually sticks. Every tool maps one-to-one to something a real learner does: ingest, quiz, track progress, review what's due. Built as a voice-first tutor (LiveKit + Deepgram + ElevenLabs); the MCP surface exposes the same primitives the voice agent uses internally, so your agent gets production-grade grading, STT-aware answer parsing, and the same FSRS scheduler that powers the consumer app. Three use cases: 1. "Quiz me on X." Call quiz_me(topic) — a composite tool that builds the deck and starts the quiz in one step. Then loop submit_answer → end_quiz. Grading is tier-1 exact match → phonetic fuzz → short LLM fallback (the same pipeline that ships in the voice product). 2. Study from a YouTube lecture. create_deck_from_youtube pulls the transcript, clusters it into concepts, and generates cards proportional to the video length. Poll get_job_status, then run the quiz loop. 3. Daily spaced-repetition review. get_study_recommendations returns exactly the cards due under the user's FSRS schedule, prioritised across all decks. Quizlar is the scheduler of record — your agent executes the plan instead of reinventing one each session. Auth: Bearer token (sk-qz-<32 chars>) for headless installs, or full OAuth 2.1 / DCR / PKCE for one-click clients (Smithery, Claude Connector). Mint keys at https://quizlar.app/settings/api-keys. 22 tools total. Voice and text equal-status. Education-first.

下一个 MCP

Qwen3 Tts MCP 4320f88f

提供语音设计和语音克隆功能的TTS服务,支持从语音描述生成语音和从参考音频克隆语音。