minimax-mcp-tools
Async MCP server with Minimax API integration for image generation and text-to-speech
GitHubスター
50
ユーザー評価
未評価
お気に入り
0
閲覧数
19
フォーク
12
イシュー
0
インストール方法
難易度
初級推定所要時間
5-10 分
インストール方法
インストール方法
前提条件
必要なソフトウェアとバージョンを明記してください。Node.js: 16以上
Minimax APIキー: [Minimax Platform](https://api.minimax.chat/)から取得
Minimax Group ID: TTS機能用
インストール手順
1. リポジトリのクローン
bash
git clone https://github.com/PsychArch/minimax-mcp-tools
cd minimax-mcp-tools
2. 依存関係のインストール
bash
npm install
3. MCP設定ファイルの作成または更新
json
{
"mcpServers": {
"minimax-mcp-tools": {
"command": "npx",
"args": [
"minimax-mcp-tools"
],
"env": {
"MINIMAX_API_KEY": "your-minimax-api-key",
"MINIMAX_GROUP_ID": "your-minimax-group-id"
}
}
}
}
4. サーバーの起動
bash
npm start