Skip to main content
Drop in a link to a recording — a podcast clip, a voice memo, a meeting export — and your agent transcribes it and hands back the key points. fal.ai’s Whisper fetches the URL server-side (so nothing to upload), and Claude distills it. ~$0.04.
Self-contained by design: transcription takes an audio_url, and fal fetches it for you — no file upload, which means it runs cleanly in chat clients too. Point it at any public audio URL.

The prompt


What runs

  1. POST /fal/fal-ai/whisper — Whisper transcribes the audio URL (~$0.02)
  2. POST /anthropic/v1/messages — Claude pulls the key points (~$0.02)

Run it

Claude Desktop (MCP)

Paste the prompt with any public audio URL.

SDK


Expected output


Extend it

  • Swap fal Whisper for Groq (/groq/v1/audio/transcriptions) or OpenAI (/openai/v1/audio/transcriptions) for a file-upload variant
  • Chain DeepL (/deepl/v1/translate) to deliver the summary in another language
  • Feed the transcript to Anthropic again to draft follow-up emails, then send via Resend (/resend/v1/emails)
  • Pair with the Make AI music recipe in reverse — synthesize speech via ElevenLabs, then transcribe it back as a self-contained round-trip test