AivisSpeech

by kentaro

Not rated
GitHub

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

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:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name AivisSpeech
    Command (node, npx, python, etc.) node
    Arguments
    • 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.

  4. 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

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.