reelmint-local-mcp

reelmint-local-mcp

Downloads and analyzes videos from platforms like Instagram, YouTube, and TikTok locally, returning keyframes and optional transcripts.

Category
Visit Server

README

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_video(url, frames=6) Download a video to a local file → returns the saved .mp4 path + a few keyframe images for a quick look.
status() Reports whether yt-dlp / ffmpeg are installed + the active cookie/save config.

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
IG_COOKIES_FROM_BROWSER chrome Browser to read cookies from (chrome/safari/firefox/edge/brave); "" = public only. Unlocks private/followed content.
IG_SAVE_DIR ~/Downloads/reelmint-reels Where downloads are saved.
IG_MAX_FRAMES 8 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).

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured