Voice Recognition MCP Service
音声認識MCPサービス
このサービスは、stdio モードと MCP モードの両方を通じて音声認識およびテキスト抽出機能を提供します。
特徴
ファイルからの音声認識
base64エンコードされたデータからの音声認識
テキスト抽出
stdioとMCPモードの両方をサポート
構造化された音声認識結果
Related MCP server: GhostMinutes MCP
プロジェクト構造
voice_service.py- コアサービスの実装stdio_server.py- stdio モードのエントリ ポイントmcp_server.py- MCP モードのエントリ ポイントbuild.py- 実行可能ファイルのビルドスクリプトbuild_exec.sh- ビルド実行スクリプトtest_*.sh- さまざまな機能のテストスクリプト
インストール
リポジトリをクローンします。
git clone https://github.com/AIO-2030/mcp_voice_identify.git
cd mcp_voice_identify依存関係をインストールします:
pip install -r requirements.txt.envで環境変数を設定します。
API_URL=your_api_url
API_KEY=your_api_key使用法
stdioモード
サービスを実行します:
python stdio_server.pyJSON-RPC リクエストを stdin 経由で送信します。
{
"jsonrpc": "2.0",
"method": "help",
"params": {},
"id": 1
}または実行可能ファイルを使用します:
./dist/voice_stdioMCPモード
サービスを実行します:
python mcp_server.pyまたは実行可能ファイルを使用します:
./dist/voice_mcp音声認識結果
このサービスは構造化された音声認識結果を提供します。レスポンス形式の例を以下に示します。
元のAPIレスポンス
{
"jsonrpc": "2.0",
"result": {
"message": "input processed successfully",
"results": "test test test",
"label_result": "<|en|><|EMO_UNKNOWN|><|Speech|><|woitn|>test test test"
},
"id": 1
}再構築された対応
{
"jsonrpc": "2.0",
"result": {
"message": "input processed successfully",
"results": "test test test",
"label_result": {
"lan": "en",
"emo": "unknown",
"type": "speech",
"speaker": "woitn",
"text": "test test test"
}
},
"id": 1
}ラベル結果フィールド
label_resultフィールドには、次の構造化された情報が含まれます。
分野 | 説明 | サンプル値 |
ラン | 言語コード | 「en」 |
エモ | 感情状態 | "未知" |
タイプ | オーディオタイプ | 「スピーチ」 |
スピーカー | スピーカー識別子 | 「ウォイトン」 |
文章 | 認識されたテキストコンテンツ | 「テスト、テスト、テスト」 |
特殊ラベル
サービスは、元の応答内の次の特殊なラベルを認識して処理します。
<|en|>- 言語コード<|EMO_UNKNOWN|>- 感情状態<|Speech|>- オーディオの種類<|woitn|>- 話者識別子
実行可能ファイルのビルド
ビルド スクリプトを実行可能にします。
chmod +x build_exec.shstdio モード実行可能ファイルをビルドします。
./build_exec.shMCP モード実行可能ファイルをビルドします。
./build_exec.sh mcp実行可能ファイルは次の場所に作成されます:
stdioモード:
dist/voice_stdioMCPモード:
dist/voice_mcp
テスト
テスト スクリプトを実行します。
chmod +x test_*.sh
./test_help.sh
./test_voice_file.sh
./test_voice_base64.shライセンス
このプロジェクトは MIT ライセンスに基づいてライセンスされています - 詳細については LICENSE ファイルを参照してください。
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA powerful speech-to-text MCP server that supports multiple audio formats and recognition engines including remote APIs (Bailian, OpenAI Whisper, iFLYTEK), Google Speech Recognition, and CMU Sphinx.1
- AlicenseAqualityDmaintenanceProvides accurate meeting transcription with speaker diarization and multilingual support, allowing users to submit audio URLs, poll transcription status, get transcripts, and summarize via MCP tools in their IDE.81MIT
- FlicenseNot gradedqualityDmaintenanceA high-performance speech recognition MCP server based on Faster Whisper, providing efficient audio transcription capabilities with support for multiple model sizes, batch processing, and various output formats.17
- FlicenseNot gradedqualityCmaintenanceA Model Context Protocol (MCP) server that gives AI agents the ability to process audio files — transcribe speech to text, detect spoken languages, and extract audio metadata.1
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
MCP server exposing the AceDataCloud Fish Audio API (text-to-speech with voice conditioning)
A paid remote MCP for AI SDK data query MCP, built to return verdicts, receipts, usage logs, and aud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yangsenessa/mcp_voice_identify'
If you have feedback or need assistance with the MCP directory API, please join our Discord server