Find the media stream behind any web page: browser-driven HLS/DASH/MP4 with learnable site profiles
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Find the media stream behind any web page.
A real browser opens the page, dismisses the overlays, presses play, and watches the network until the media request appears. You get the stream URL (HLS, DASH, MP4 or audio) plus the headers needed to replay it.
No per-site configuration. No extractor to wait for. If a browser can play it, zahori can find it.
zahori heal repairs a profile when the site changes, using a BYO-key model, verified by an objective oracle before anything is saved.The long tail of the web streams through embedded players that no downloader knows: local TV and radio stations, live event pages, small video portals. yt-dlp is superb for the big platforms it curates extractors for. But the long tail has no extractor, and hand-writing one per site doesn't scale.
| yt-dlp | zahori | |
|---|---|---|
| Coverage | ~1,800 curated sites | any page a browser can open |
| Method | per-site extractor code | real browser + network sniffing |
| New site | wait for a maintainer | works generically, or learn it in minutes |
| Site changed | extractor breaks until patched | zahori heal repairs the profile |
They are complementary: use yt-dlp for YouTube, use zahori for the page nobody wrote an extractor for.
Requirements
| Node | β₯ 22 |
| Browser | run npx playwright install chromium --only-shell once; otherwise your installed Google Chrome is used |
| ffmpeg | optional, only for --validate, --download and the discovery oracle |
pnpm users: pnpm blocks dependency build scripts by default, so Playwright won't auto-download a browser. Run the
playwright installline above once, or your system Chrome is used as a fallback.
The --json output looks like this:
Resolved URLs are often signed and short-lived. zahori re-derives the stream fresh on every run, so use the URL immediately and never store it.
Pass stream.headers to whatever fetches the URL. With ffmpeg:
Errors are typed: NoStreamError (nothing captured) and DrmError (protected content, refused).
For sites behind a login, drive zahori inside a Playwright context you control (e.g. one with storage state):
zahori ships zero site knowledge. Most pages resolve with the built-in generic flow. When one doesn't, the fix is a profile: a small JSON file describing how to open that site (which elements to click, how to recognize the media request, which candidate to pick). Profiles are data, not code; the engine interprets them deterministically, with no AI at runtime.
Profiles live in .zahori/profiles/ in your project (commit them, so they travel to production and teammates) or ~/.zahori/profiles/ globally. A profile stores how to re-derive the stream, never a stream URL, so signed or expiring URLs are never a problem.
zahori is an MCP server: any MCP-capable agent can probe a site, propose a profile, test it against the oracle, and save it when it passes, using the subscription you already have and no API key. The server sends its workflow instructions to the agent during the protocol handshake, so this works the same in every client.
Most clients take the standard config:
| Client | Setup |
|---|---|
| Cursor | add the block above to ~/.cursor/mcp.json (or per-project .cursor/mcp.json) |
| VS Code / Copilot | .vscode/mcp.json, under a "servers" key instead of "mcpServers" |
| Windsurf | ~/.codeium/windsurf/mcp_config.json |
| Claude Code | claude mcp add zahori -- npx -y zahori mcp |
| Codex CLI | codex mcp add zahori -- npx -y zahori mcp |
| Gemini CLI | gemini mcp add zahori npx -y zahori mcp |
| Claude Desktop | add the block above to claude_desktop_config.json |
Then ask: "figure out the stream on https://tricky.example.org and save a profile". Tools exposed: zahori_get, zahori_probe, zahori_test_profile, zahori_save_profile, zahori_validate, zahori_list_profiles.
For unattended pipelines (cron, CI), zahori can drive a model itself. It always tries the free deterministic path first and only spends tokens when that fails:
Model specs: anthropic:<model>, openai:<model>, ollama:<model>, compat:<model> (any OpenAI-compatible endpoint), or set ZAHORI_MODEL once. The model only proposes profiles; the engine runs each proposal and the oracle grades it, so nothing unverified is ever saved.
"Did anything download" is a weak test: it blesses ad bumpers, hold music and geo-block slates. The oracle combines stronger signals before trusting a stream.
Verdicts are pass, fail or inconclusive; discovery only saves profiles the oracle passes.
zahori is built for publicly accessible, unprotected streams: pages that already play for any visitor in a normal browser. It resolves what the browser already plays; it does not break into anything.
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/zahori)<a href="https://allmcps.com/mcp/zahori"><img src="https://allmcps.com/api/badge/zahori?style=directory" alt="Zahori on AllMCPs" /></a>