MCP Audio Transcriber
MCP Аудио Транскрибатор
Инструмент Python Dockerized, реализующий протокол контекста модели (MCP) через API AssemblyAI. Загрузите или укажите на аудиофайл и получите структурированную транскрипцию JSON.
Функции
AssemblyMCP : конкретная реализация MCP, использующая REST API AssemblyAI
Интерфейс командной строки (
app.py):python app.py <input_audio> <output_json>Веб-интерфейс Streamlit (
streamlit_app.py):Загрузите локальные файлы или вставьте URL-адреса
Нажмите «Транскрибировать»
Предварительный просмотр транскрипта и загрузка JSON
Поддержка Docker для обеспечения согласованности и переносимости среды
Related MCP server: Fast-Whisper-MCP-Server
Предпосылки
Питон 3.10+
API-ключ AssemblyAI
ffmpeg (для локального декодирования, если используются локальные файлы)
(Необязательно) Рабочий стол Docker / Движок
(Необязательно) Streamlit (
pip install streamlit)
🔧 Установка
Клонировать репозиторий
git clone https://github.com/ShreyasTembhare/MCP---Audio-Transcriber.git cd MCP---Audio-TranscriberСоздать
.envASSEMBLYAI_API_KEY=your_assemblyai_api_key_hereУбедитесь, что
.gitignoreсодержит:.envУстановить зависимости Python
pip install --upgrade pip pip install -r requirements.txtУстановить ffmpeg
Ubuntu/Debian:
sudo apt update && sudo apt install ffmpeg -yWindows: скачайте с https://ffmpeg.org и добавьте его
bin/в ваш PATH
Использование
1. Транскрипция CLI
python app.py <input_audio> <output_json><input_audio>: любой файл или URL, поддерживаемый AssemblyAI<output_json>: путь для сгенерированного JSON
Пример:
python app.py data/input.ogg data/output.json
cat data/output.json2. Streamlit Web UI
streamlit run streamlit_app.pyОткройте http://localhost:8501
Загрузите или введите URL-адрес аудио
Нажмите «Транскрибировать»
Загрузите результат JSON
3. Докер
Создайте изображение:
docker build -t mcp-transcriber .Запустите его (смонтировав папку data/):
docker run --rm \
-e ASSEMBLYAI_API_KEY="$ASSEMBLYAI_API_KEY" \
-v "$(pwd)/data:/data" \
mcp-transcriber:latest \
/data/input.ogg /data/output.jsonЗатем проверьте:
ls data/output.json
cat data/output.jsonWindows PowerShell:
docker run --rm `
-e ASSEMBLYAI_API_KEY=$env:ASSEMBLYAI_API_KEY `
-v "${PWD}\data:/data" `
mcp-transcriber:latest `
/data/input.ogg /data/output.jsonСтруктура проекта
MCP-Audio-Transcriber/
├── app.py # CLI entrypoint (AssemblyMCP only)
├── mcp.py # ModelContextProtocol + AssemblyMCP
├── streamlit_app.py # Streamlit interface
├── requirements.txt # assemblyai, python-dotenv, streamlit, etc.
├── Dockerfile # builds the container
├── .gitignore # ignores .env, __pycache__, etc.
├── LICENSE # MIT license
└── data/ # sample input and output
├── input.ogg
└── output.jsonThis 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 gradedqualityCmaintenanceEnables high-performance audio transcription using Faster Whisper with CUDA acceleration, supporting single and batch audio file processing with multiple output formats (VTT, SRT, JSON).
- 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
- AlicenseAqualityFmaintenanceProvides local audio transcription using whisper.cpp, supporting multiple models and audio formats. Enables transcription of audio files via MCP tools with optional timestamps.3673MIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Transform video, audio and images, and generate media from prompts. FFmpeg, captions, models.
A Model Context Protocol server for Wix AI tools
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/ShreyasTembhare/MCP---Audio-Transcriber'
If you have feedback or need assistance with the MCP directory API, please join our Discord server