Live webcast transcription + vocal stress analysis (F0 jitter, hesitation) for earnings calls.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
MCP server for live financial webcast transcription and heuristic vocal stress analysis.
Turns any live webcast URL (earnings calls, CNBC, investor days) into a real-time pipeline that feeds an LLM two things simultaneously:
faster-whisper (CPU, int8).Built on the Model Context Protocol. Exposes 4 tools over stdio; drop it into Claude Desktop, Claude Code, or any MCP client.
Sell-side analysts and hedge-fund PMs don't just want to read the earnings transcript after the fact β they want a real-time signal about how confident the CFO sounds when asked about Q4 guidance. This server wires a Whisper pipeline and a pYIN-based prosody analyzer directly into an LLM's tool loop, so the model can ask "what did the CEO just say about China?" and "how stressed did they sound saying it?" in the same conversation.
FFmpeg is a system binary, not a Python package. The ffmpeg-python
wrapper is not a dependency here β we drive the binary directly via
subprocess. You must install it yourself.
macOS (Homebrew):
Linux (Debian / Ubuntu):
Linux (Fedora / RHEL):
Windows β choose one:
Confirm it's on your PATH:
If the command errors with "not found", reopen the terminal (PATH changes
don't propagate to already-open shells) or add the ffmpeg bin/ directory
to your PATH manually.
Requires Python β₯ 3.10.
Or run directly without installing with uv:
The first run will download the faster-whisper base.en model (~140 MB) from
Hugging Face and cache it under ~/.cache/huggingface/.
Stdio MCP server:
Or equivalently:
Add to claude_desktop_config.json:
| Tool | Purpose |
|---|---|
monitor_live_stream(url, disable_vad=False) | Resolve the audio URL, spawn ffmpeg, start chunking + transcription. Returns a stream_id. |
get_rolling_transcript(stream_id, minutes_back=10) | Get the last N minutes of concatenated transcript text. |
analyze_speaker_stress(stream_id, time_window_seconds=60) | Run prosody analysis over the last N seconds of audio. Returns stress score, pitch jitter, hesitation ratio, pause stats, and a human-readable interpretation. |
stop_monitor(stream_id) | Kill ffmpeg, clean up temp files, drop the transcript buffer. |
| Score | Interpretation |
|---|---|
| 0β20 | Confident, fluent delivery |
| 20β45 | Normal variation |
| 45β75 | Elevated stress β worth monitoring |
| 75β100 | High stress β potential market-moving signal |
Composite of:
The three features are literature-backed correlates of speaker arousal (see pYIN for F0 tracking, and the broad "disfluency is a correlate of cognitive load" line of work). The weights and saturation points are hand-picked defaults, chosen so that a calm speaker scores in the 0β20 band on clean studio audio and visibly stressed speech scores β₯ 45 β they are not fit to any labeled dataset. Consumers who care about absolute numbers should recalibrate thresholds against their own recordings.
A synthetic-audio calibration harness lives at scripts/validate_stress_score.py. It generates controlled audio (smooth sine, jittered pitch, silence-padded speech) and asserts that the score responds in the expected direction. This is calibration evidence, not market-outcome validation.
For speakerphone audio (most earnings Q&A), pass disable_vad=true to
monitor_live_stream. Silero VAD tends to aggressively classify muddy
conference-call speech as silence; disabling it preserves more of the speech
at the cost of transcribing a bit more ambient noise.
By default the server caps concurrent streams at 4 (each stream holds an ffmpeg subprocess, a yt-dlp subprocess, a thread, and a temp directory). Override via env var for high-throughput deployments:
Exceeding the cap raises StreamLimitExceededError rather than silently
queuing.
All blocking work (Whisper inference, ffmpeg I/O, librosa DSP) is dispatched
to threads via asyncio.to_thread so the MCP event loop stays responsive.
The pytest suite in tests/ covers the pure-Python logic that doesn't require network or ffmpeg:
StreamManagerValueError / RuntimeError)This generates synthetic audio with known acoustic properties and verifies the stress score responds in the expected direction. It's a sanity check for the weighting heuristics β not a replacement for empirical validation against real earnings-call outcomes.
ffmpeg: command not found β ffmpeg isn't on PATH. See the install
section above. On Windows, reopen your terminal after installing.
yt-dlp could not resolve URL β The site isn't supported by yt-dlp
or the URL is malformed. Test with yt-dlp -F <url> from the command
line; if that fails, the server will too.
Whisper downloads hang on first run β The ~140 MB model download goes
to ~/.cache/huggingface/. Check your network and Hugging Face access.
"Insufficient voiced frames" in stress output β The audio window is
mostly silence or noise. Usually means the stream is still buffering;
wait 30s and retry. For speakerphone Q&A, start the monitor with
disable_vad=true.
See CONTRIBUTING.md.
See CHANGELOG.md.
MIT β see LICENSE.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/live-audio-intelligence)<a href="https://allmcps.com/mcp/live-audio-intelligence"><img src="https://allmcps.com/api/badge/live-audio-intelligence?style=directory" alt="Live Audio Intelligence on AllMCPs" /></a>