Audio Transcriber MCP Server
Provides audio transcription capabilities using OpenAI's Speech-to-Text API, allowing conversion of audio files to text with options for language specification and saving transcriptions to files.
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., "@Audio Transcriber MCP Servertranscribe my meeting recording.mp3 and save it"
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.
OpenAI Speech-to-Text transcriptions MCP Server
A MCP server that provides audio transcription capabilities using OpenAI's API.
Installation
Setup
Clone the repository:
git clone https://github.com/Ichigo3766/audio-transcriber-mcp.git
cd audio-transcriber-mcpInstall dependencies:
npm installBuild the server:
npm run buildSet up your OpenAI API key in your environment variables.
Add the server configuration to your environment:
{
"mcpServers": {
"audio-transcriber": {
"command": "node",
"args": [
"/path/to/audio-transcriber-mcp/build/index.js"
],
"env": {
"OPENAI_API_KEY": "",
"OPENAI_BASE_URL": "", // Optional
"OPENAI_MODEL": "" // Optional
}
}
}
}Replace /path/to/audio-transcriber-mcp with the actual path where you cloned the repository.
Related MCP server: whisper-telegram-mcp
Features
Tools
transcribe_audio- Transcribe audio files using OpenAI's APITakes filepath as a required parameter
Optional parameters:
save_to_file: Boolean to save transcription to a file
language: ISO-639-1 language code (e.g., "en", "es")
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Available Tools
1 tooltranscribe_audioC
Transcribe an audio file using OpenAI Whisper API
| Name | Required | Description | Default |
|---|---|---|---|
| filepath | Yes | Absolute path to the audio file | |
| language | No | Language of the audio in ISO-639-1 format (e.g. "en", "es"). Default is "en". | |
| save_to_file | No | Whether to save the transcription to a file next to the audio file |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions the API but doesn't disclose key behavioral traits: whether it's read-only or mutative, error handling, rate limits, authentication needs, or what happens with the 'save_to_file' option. The description is minimal and misses critical operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It's front-loaded with the core purpose and implementation detail. Every word earns its place, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., transcription text, file path), error conditions, or behavioral details. For a tool with 3 parameters and potential side effects (saving files), more context is needed for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents parameters. The description adds no additional meaning beyond implying audio file processing. It doesn't explain parameter interactions or provide examples, so it meets the baseline but doesn't enhance understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Transcribe') and resource ('an audio file'), specifying the implementation method ('using OpenAI Whisper API'). It's specific enough to understand the core function, though without sibling tools, differentiation isn't applicable. The purpose is unambiguous but could be slightly more detailed about output format.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, prerequisites, or typical use cases. It mentions the API but doesn't explain limitations or ideal scenarios. With no sibling tools, this is less critical, but still lacks context for effective agent decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v1.0.0- First observed
transcribe_audio
TDQS
Scored across 1 tool
With only one tool, there is no possibility of ambiguity or overlap between tools. The tool's purpose is clearly defined and singular, making it impossible for an agent to misselect between non-existent alternatives.
The single tool name follows a clear verb_noun pattern (transcribe_audio), and with only one tool, there is no inconsistency to evaluate. The naming is straightforward and aligns with common conventions.
A single tool is too few for a server named 'Audio Transcriber MCP Server', as it suggests a limited scope that may not cover related operations like transcription status checks, file management, or configuration. This minimal set could hinder agent workflows that require more comprehensive functionality.
The tool set is severely incomplete for audio transcription tasks. While it provides a core transcription function, it lacks essential operations such as listing available transcriptions, retrieving transcription results, handling errors, or managing audio files, which are typical in such domains and could lead to agent failures.
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 Connectors
MCP server for RiverScript, an AI transcription platform - fetches transcripts shared via a link.
MCP server for Speech-to-Text
An MCP server that provides tools to discover and retrieve podcast episodes transcripts.
An MCP server that gives any LLM or agent clean YouTube transcripts on demand: a single video, a whole channel, or a playlist, plus AI cleanup of auto-generated captions. API-key auth, credit-based, same backend as the public v1 API. Get a free API key with 25 free credits at youtubetranscriptdownload.com/account.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server that enables LLMs to generate spoken audio from text using OpenAI's Text-to-Speech API, supporting various voices, models, and audio formats.161MIT
- AlicenseAqualityDmaintenanceAn MCP server that enables transcribing local audio files and Telegram voice messages using OpenAI's Whisper via local inference or cloud API. It supports multiple audio formats, automatic language detection, and optional word-level timestamps for AI-powered audio analysis.51MIT
- AlicenseAqualityAmaintenanceMCP server for audio transcription using local faster-whisper or OpenAI Whisper API, enabling multilingual transcription with optional GPT post-processing.3MIT
- AlicenseAqualityDmaintenanceAn MCP server for audio-to-text transcription using Google's Gemini API via OpenRouter, offering multiple tools for raw, cleaned, or formatted transcripts with support for local and remote deployment.617MIT
Appeared in Searches
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/Ichigo3766/audio-transcriber-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server