AivisSpeech
About
Enables AI systems to generate and play speech audio from text input through the AivisSpeech API, with configurable speaker settings for voice output applications.
Details
- Author
- kentaro
- Repository
- kentaro/aivis-speech-mcp
- Categories
- AI, Design, Developer Tools, Media, Infrastructure, Frontend, API
- Tags
- #integration
Jump to
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
AivisSpeechCommand (node, npx, python, etc.)nodeArguments-
Argument 1
/path/to/aivis-speech-mcp/dist/index.js
Environment-
AIVIS_SPEECH_API_URL
http://localhost:10101 -
AIVIS_SPEECH_SPEAKER_ID
888753760
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
AIVIS_SPEECH_API_URL=http://localhost:10101 # AivisSpeech EngineのAPIエンドポイント
AIVIS_SPEECH_SPEAKER_ID=888753760 # デフォルトのスピーカーID
```
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"aivisspeech": {
"env": {
"AIVIS_SPEECH_API_URL": "http://localhost:10101",
"AIVIS_SPEECH_SPEAKER_ID": "888753760"
},
"args": [
"/path/to/aivis-speech-mcp/dist/index.js"
],
"command": "node"
}
}
}
Linux
{
"env": {
"AIVIS_SPEECH_API_URL": "http://localhost:10101",
"AIVIS_SPEECH_SPEAKER_ID": "888753760"
},
"args": [
"/path/to/aivis-speech-mcp/dist/index.js"
],
"command": "node"
}
Macos
{
"env": {
"AIVIS_SPEECH_API_URL": "http://localhost:10101",
"AIVIS_SPEECH_SPEAKER_ID": "888753760"
},
"args": [
"/path/to/aivis-speech-mcp/dist/index.js"
],
"command": "node"
}
Windows
{
"env": {
"AIVIS_SPEECH_API_URL": "http://localhost:10101",
"AIVIS_SPEECH_SPEAKER_ID": "888753760"
},
"args": [
"C:/path/to/aivis-speech-mcp/dist/index.js"
],
"command": "node"
}
AivisSpeech MCP サーバー
AivisSpeech用のModel Context Protocol (MCP) サーバーの実装です。このサーバーは、AivisSpeech Engineと連携して、音声合成のためのインターフェースを提供します。MCPプロトコルを通じて、AIアシスタントなどのアプリケーションからAivisSpeechの音声合成機能を簡単に利用できるようになります。
概要
AivisSpeech MCP サーバーは以下の機能を提供します:
- MCPプロトコルに準拠したAPIエンドポイント
- AivisSpeech Engineとの連携による高品質な音声合成
- TypeScriptによる型安全な設計
- 簡単な設定と拡張性の高いアーキテクチャ
必要条件
- Node.js 18.x以上
- npm 9.x以上
- AivisSpeech Engine(別途インストールが必要)
インストール
```bash
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.




