reelmint-local-mcp
Allows downloading and analyzing Instagram reels locally, extracting keyframes and optional Whisper transcripts.
Allows downloading and analyzing TikTok videos locally, extracting keyframes and optional Whisper transcripts.
Allows downloading and analyzing YouTube videos (including Shorts) locally, extracting keyframes and optional Whisper transcripts.
Allows downloading and analyzing YouTube Shorts locally, extracting keyframes and optional Whisper transcripts.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@reelmint-local-mcpDownload this Instagram reel and describe it."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
reelmint-local-mcp
A tiny local MCP server for Claude Desktop (and any MCP client) whose one job is to download a video on your own machine — Instagram reels, YouTube, TikTok, or any yt-dlp-supported URL — and hand back the saved file path (plus a few preview keyframes).
Because it runs on your computer (a residential IP, optionally with your logged-in browser cookies), it reaches content a server can't: platforms block datacenter IPs, so a cloud service either fails or has to pay a proxy to fetch the bytes. On your laptop, the download is free and just works.
It does only the download. Understanding the video, transcripts, and building anything from it are done by whatever MCP/tools you hand the file to.
Built for ReelMint but depends on nothing from it — works with any MCP client.
Tools
Tool | What it does |
| Download a video to a local file → returns the saved |
| Reports whether yt-dlp / ffmpeg are installed + the active cookie/save config. |
Related MCP server: VideoContext MCP
Requirements
Python 3.10+
ffmpeg — for the preview keyframes. macOS:
brew install ffmpeg(downloads still work without it; you just won't get frames)
Install
git clone https://github.com/HiteshR90/reelmint-local-mcp.git
cd reelmint-local-mcp
python3 -m venv .venv
.venv/bin/pip install -U pip -r requirements.txt
# sanity check (expect ready: True)
.venv/bin/python -c "import server; print(server.status())"Connect to Claude Desktop
Add this to ~/Library/Application Support/Claude/claude_desktop_config.json
(merge into your existing mcpServers), using absolute paths, then fully quit
and reopen Claude Desktop:
{
"mcpServers": {
"reelmint-local": {
"command": "/absolute/path/to/reelmint-local-mcp/.venv/bin/python",
"args": ["/absolute/path/to/reelmint-local-mcp/server.py"],
"env": {
"IG_COOKIES_FROM_BROWSER": "chrome",
"IG_SAVE_DIR": "~/Downloads/reelmint-reels"
}
}
}
}Then just ask: "download_video this <url>" → you get the saved path (and a preview). Drag that file into your MCP client to do anything else with it.
Configuration (env)
Var | Default | Meaning |
|
| Browser to read cookies from ( |
|
| Where downloads are saved. |
|
| Hard cap on preview keyframes. |
Notes & limits
Private accounts need your browser cookies (
IG_COOKIES_FROM_BROWSER) and that you follow the account. Reading cookies may prompt for OS keychain access; some browsers must be closed first.Platforms fight scrapers; keep it fresh with
pip install -U yt-dlp.This is a client-side utility. You are responsible for complying with the terms of service of the sites you download from.
License
MIT — © 2026 Hitesh R (ReelMint).
Related MCP Connectors
Fetch transcripts, subtitles, chapters, metadata and frames from YouTube and 10+ video platforms
Transcribe public videos & audio (YouTube, TikTok, IG) into accurate, timestamped text via API.
Turn a TikTok/Instagram/YouTube link into text for your AI: metadata, transcript and image OCR.
Video analysis AI: transcripts, summaries, visual scenes/shots, clips, answers in natural language.
Related MCP Servers
- AlicenseAqualityBmaintenanceLet AI agents watch videos: local transcripts, speaker labels, scenes, chapters and exact-moment search from any video URL or file. Fully local, no API keys.42AGPL 3.0
- AlicenseNot gradedqualityAmaintenanceTurns a YouTube video or allowlisted local video into a timestamped transcript, chronological timeline, and retrievable image resources for transparent media preprocessing.1MIT
- AlicenseNot gradedqualityBmaintenanceMCP server that turns video URLs into transcripts and important keyframes locally, with no cloud or API keys.137 npm3MIT
- AlicenseAqualityCmaintenanceEnables coding agents to turn videos from social platforms or local files into a small set of distinct frames plus a manifest, so they can answer visual questions by reading image paths. Also provides metadata lookup for captions and authors without downloading the video.2MIT