← Back to Blog

How to analyze Instagram Reels inside Claude — no copy-pasting

Lomero's MCP server connects Claude directly to Reel transcription and analysis. Give Claude a URL, get the analysis. Here's how to set it up in under 5 minutes.

The copy-paste workflow is tedious. You find a Reel worth analyzing, want Claude's take on it, so you transcribe it somewhere, copy the text, open Claude, paste it, then write a prompt. Four steps that don't need to exist.

Lomero's MCP server eliminates the middle. You give Claude a Reel URL. Claude transcribes and analyzes it directly. No manual transfer.

What MCP is, briefly

MCP (Model Context Protocol) is an open standard that lets Claude interact with external tools natively. Instead of you acting as the bridge — copying output from one tool, pasting into another — Claude connects to the tool itself.

Once the Lomero MCP server is running, Claude can call Lomero's transcription and analysis API on your behalf. You write a normal prompt, give it a URL, and Claude handles the rest.

This works in Claude Desktop (macOS and Windows). It doesn't work in the Claude.ai browser interface yet.

What you need before starting

  • A Lomero Pro plan ($39/month) — MCP access is Pro and above
  • Claude Desktop installed
  • Your Lomero API key — go to Account → API Keys after subscribing

Setup

Open your Claude Desktop configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the Lomero server:

{
  "mcpServers": {
    "lomero": {
      "command": "npx",
      "args": ["-y", "@lomero/mcp-server"],
      "env": {
        "LOMERO_API_KEY": "your_api_key_here"
      }
    }
  }
}

If you already have other MCP servers configured, add lomero as a new key inside the existing mcpServers object — don't replace the whole file.

Quit Claude Desktop completely (from the system tray, not just closing the window). Reopen it. Lomero should appear in the tools list.

If it doesn't show up, the most common cause is malformed JSON in the config file. Paste the whole file into a JSON validator before debugging anything else.

What you can ask Claude once it's running

These are normal prompts — no special syntax required. Claude knows to call Lomero when you're asking about a Reel URL.

"Transcribe this Reel and pull out the opening hook: https://www.instagram.com/reel/..."

"What hook pattern is this Reel using, and how strong is it? [URL]"

"Compare the hooks from these three Reels and tell me which one would hold the most attention: [URLs]"

"Take this Reel and write a LinkedIn post from it in the same voice: [URL]"

"Analyze the last 5 Reels from @username and tell me what content structure they keep using."

The last prompt is where the MCP setup pays off most — running a batch analysis across multiple URLs without touching the transcript of any individual one.

What this doesn't do

Private Reels and private accounts won't work — same restriction as the web interface. The tool only accesses publicly available content.

MCP requires Pro plan. If you're on Starter or Free, the web interface at lomero.app/analyze is the same transcription engine without the Claude integration.

TikTok and YouTube Shorts are on the roadmap — the MCP tools will extend to those platforms when the integrations ship.

For the full list of available MCP tools and their parameters, the documentation has the complete reference.