Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Mini Whisper

FreeNot checked

This MCP server enables audio transcription using OpenAI Whisper, supporting various model sizes and base64-encoded audio input via stdio or HTTP transport.

GitHubEmbed

About

This MCP server enables audio transcription using OpenAI Whisper, supporting various model sizes and base64-encoded audio input via stdio or HTTP transport.

README

MCP server for audio transcription using OpenAI Whisper.

Requirements

  • Python 3.11+
  • uv
  • ffmpeg (apt install ffmpeg / brew install ffmpeg)

Install

uv sync

Run

stdio (for local agents)

uv run python -m mini_whisper_mcp --transport stdio

HTTP

uv run python -m mini_whisper_mcp --transport streamable-http --host 0.0.0.0 --port 8000

Docker

docker build -t mini-whisper-mcp .
docker run -p 8000:8000 mini-whisper-mcp

Docker Compose

Create a docker-compose.yml alongside your calling agent:

services:
  mini-whisper-mcp:
    image: mini-whisper-mcp
    build: ./mini-whisper-mcp   # path to this repo
    ports:
      - "8000:8000"
    environment:
      MCP_TRANSPORT: streamable-http
      MCP_HOST: 0.0.0.0
      MCP_PORT: "8000"
    restart: unless-stopped

  your-agent:
    build: ./your-agent
    environment:
      WHISPER_MCP_URL: http://mini-whisper-mcp:8000/mcp
    depends_on:
      - mini-whisper-mcp
docker compose up

The agent connects to the MCP server at http://mini-whisper-mcp:8000/mcp using the service name as hostname.

Configuration

Env var Default Description
MCP_TRANSPORT streamable-http stdio or streamable-http (Docker default)
MCP_HOST 0.0.0.0 Host for HTTP mode
MCP_PORT 8000 Port for HTTP mode

MCP Tools

health_check

Basic server health check. Returns "ok".

transcribe

Param Type Default Description
audio_b64 string Base64-encoded audio file content
model string base tiny, base, small, medium, large
suffix string .mp3 File extension hint: .mp3, .wav, .m4a, etc.

Models are cached in memory after first load. Larger models are more accurate but slower.

Usage example (calling agent)

import base64

with open("audio.mp3", "rb") as f:
    audio_b64 = base64.b64encode(f.read()).decode()

result = await mcp_client.call_tool("transcribe", {
    "audio_b64": audio_b64,
    "model": "base",
    "suffix": ".mp3",
})

Testing with MCP Inspector

npx @modelcontextprotocol/inspector uv run python -m mini_whisper_mcp --transport stdio

For HTTP, start the server first then connect Inspector to http://localhost:8000/mcp.

Claude Desktop config (stdio)

{
  "mcpServers": {
    "whisper": {
      "command": "uv",
      "args": ["--directory", "/path/to/mini-whisper-mcp", "run", "python", "-m", "mini_whisper_mcp", "--transport", "stdio"]
    }
  }
}

Project structure

mini_whisper_mcp/
├── __main__.py   # CLI entrypoint (--transport, --host, --port)
├── server.py     # MCP tools
└── models.py     # Whisper model loader with CUDA fallback

from github.com/rhuanca/mini_whisper_mcp

Install Mini Whisper in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install mini-whisper-mcp

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add mini-whisper-mcp -- uvx --from git+https://github.com/rhuanca/mini_whisper_mcp mini-whisper-mcp

FAQ

Is Mini Whisper MCP free?

Yes, Mini Whisper MCP is free — one-click install via Unyly at no cost.

Does Mini Whisper need an API key?

No, Mini Whisper runs without API keys or environment variables.

Is Mini Whisper hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Mini Whisper in Claude Desktop, Claude Code or Cursor?

Open Mini Whisper on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Mini Whisper with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All media MCPs