transcribe-agent
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@transcribe-agenttranscribe https://youtu.be/example"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Transcribe Agent
A Docker-hosted web application and MCP service that turns YouTube links or uploaded audio into Markdown, plain-text, and Word transcripts.
The service uses existing YouTube captions first and OpenRouter speech-to-text when captions are unavailable. Temporary audio is deleted after processing, and completed jobs expire automatically.
Pull the image
docker pull obyrned/transcribe-agent:latestRelated MCP server: Video to Text MCP Server
Run with Docker
mkdir -p data
docker run --rm \
-p 8765:8765 \
-v "$PWD/data:/data" \
-e OPENROUTER_API_KEY="YOUR_KEY" \
obyrned/transcribe-agent:latestOpen http://localhost:8765/.
The server-side key is optional. If it is omitted, users can provide an OpenRouter key for an individual job. Submitted keys are never written to job files or exported documents.
Docker Compose
cp .env.example .env
# Add your key to .env if you want a server-side fallback.
docker compose up --buildMCP
The image includes a stdio MCP server:
docker exec -i transcribe-agent python /app/mcp_server.pyThe MCP tool requires the caller's OpenRouter key and does not store it.
Development
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements-dev.txt
pytest -qDo not commit .env, browser cookies, generated transcripts, or API keys. Review the retention and network settings before exposing the service outside a trusted network.
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
- AlicenseAqualityAmaintenanceTranscribes videos from 1000+ platforms (YouTube, TikTok, Vimeo, etc.) and local video files using OpenAI's Whisper model, with support for 90+ languages and multiple output formats.8574MIT
- AlicenseBqualityDmaintenanceEnables downloading videos from platforms like YouTube and converting them to text using OpenAI Whisper and ffmpeg. It supports multiple output formats including TXT, JSON, SRT, and VTT for transcriptions.213ISC
- Alicense-qualityAmaintenanceConverts YouTube videos, audio, documents, and web pages to clean markdown with YAML frontmatter, providing AI assistants with structured content via the MCP protocol.4MIT
- Alicense-qualityDmaintenanceExtracts clean text transcripts from YouTube videos using their subtitles and returns them as plain text.13MIT
Related MCP Connectors
Transcripts from YouTube, TikTok, Instagram and podcasts (Spotify, Apple, RSS), as clean JSON.
Fetch transcripts, subtitles, chapters, metadata and frames from YouTube and 10+ video platforms
YouTube transcripts, subtitles, and video metadata as structured JSON via an Apify Actor.
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/obyrned/transcribe-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server