Whisper CLI MCP Server
Provides audio transcription capabilities through OpenAI's Whisper model, supporting various models (base, small, medium, large, large-v2, large-v3) and output formats.
Enables execution of shell commands with basic security validation, allowing to run commands in specified working directories while blocking potentially dangerous operations.
Click on "Deploy 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., "@Whisper CLI MCP Servertranscribe the meeting recording audio.mp3"
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.
Whisper CLI MCP Server
An MCP server that provides shell command execution and OpenAI Whisper transcription capabilities.
Features
whisper_transcribe: Transcribe audio files using OpenAI Whisper
shell_command: Execute shell commands safely with basic security validation
Related MCP server: whisper-telegram-mcp
Installation
Install dependencies:
pip install -r requirements.txtMake the server executable:
chmod +x server.pyUsage
Running the Server
python server.pyTools Available
whisper_transcribe
Transcribe audio files using whisper-cli.
Parameters:
audio_file(required): Path to the audio filemodel(optional): Whisper model (base, small, medium, large, large-v2, large-v3)language(optional): Language code for transcriptionoutput_format(optional): Output format (txt, vtt, srt, json)
shell_command
Execute shell commands with basic security validation.
Parameters:
command(required): Shell command to executeworking_directory(optional): Working directory for the command
Security
The shell_command tool includes basic security validation to prevent execution of potentially dangerous commands. Commands containing the following patterns are blocked:
rm -rfsudochmod 777dd if=> /dev/
Configuration
To use this server with Claude Desktop, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"whisper-cli-mcp": {
"command": "python",
"args": ["/path/to/whisper-cli-mcp/server.py"]
}
}
}This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for RiverScript, an AI transcription platform - fetches transcripts shared via a link.
An MCP server that provides tools to discover and retrieve podcast episodes transcripts.
Remote MCP server for supportsheep: run AI interviews and manage support content for your blog.
MCP server for AI dialogue using various LLM models via AceDataCloud
Related MCP Servers
- AlicenseBqualityDmaintenanceA MCP server that enables transcription of audio files using OpenAI's Speech-to-Text API, with support for multiple languages and file saving options.1510MIT
- 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
- FlicenseAqualityDmaintenanceThis MCP server enables audio transcription using OpenAI Whisper, supporting various model sizes and base64-encoded audio input via stdio or HTTP transport.1-