Transcribe audio files to text using Whisper or compatible speech-to-text providers. Supports language detection, word-level timestamps, speaker diarization and multiple output formats.
transcribespeech-to-textwhisperaudiovoicestt
MakerAI Pipeline
pipeline: STT provider via MakerAI bridge — Whisper (local/OpenAI API)
Discovery hint: Install with ppm install mcp-transcribe or invoke remotely via POST /v1/invoke/mcp-transcribe on the MCP Service.
PascalAI Usage
uses toolslib;
var Tool := LoadTool('mcp-transcribe');
var R := Tool.Call(JsonObj(['audio_url','https://example.com/meeting.mp3','timestamps','word']));
Writeln(R['text']);