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