返回 Skill 列表
extension
分类: 内容与媒体无需 API Key

stop-tts

停止TTS服务器

person作者: jakexiaohubgithub

Stop TTS Server

Stop the VibeVoice TTS server running on port 8002.

Steps

  1. Find and kill the TTS server process:
pkill -f "python server.py --http" || pkill -f "tts-mcp.*server.py"
  1. Verify it's stopped:
curl -s http://localhost:8002/health 2>/dev/null || echo "TTS server stopped"

Should show "TTS server stopped" or connection refused.