🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

reel25-mcp

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reel25-mcp

MCP server for Reel25 — video analytics API for TikTok, Instagram, and YouTube

latest
Source
npmnpm
Version
1.0.5
Version published
Weekly downloads
25
150%
Maintainers
1
Weekly downloads
 
Created
Source

Reel25 MCP Server

MCP (Model Context Protocol) server for Reel25 — video analytics API for TikTok, Instagram, and YouTube.

Lets AI agents (Claude, Cursor, VS Code Copilot, Windsurf) interact with your Reel25 workspace: track videos, search for content, run AI analysis, manage folders, and monitor performance.

Quick Setup

1. Get your API key

Go to Settings → API Keys and create a new key.

2. Configure your AI client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "reel25": {
      "command": "npx",
      "args": ["-y", "reel25-mcp"],
      "env": {
        "REEL25_API_KEY": "reel25_sk_your_key_here"
      }
    }
  }
}

Claude Code

claude mcp add reel25 -- npx -y reel25-mcp

Set the env var: REEL25_API_KEY=reel25_sk_your_key_here

Cursor

Settings → MCP → Add Server:

  • Command: npx -y reel25-mcp
  • Env: REEL25_API_KEY=reel25_sk_your_key_here

Or add to .cursor/mcp.json:

{
  "mcpServers": {
    "reel25": {
      "command": "npx",
      "args": ["-y", "reel25-mcp"],
      "env": {
        "REEL25_API_KEY": "reel25_sk_your_key_here"
      }
    }
  }
}

VS Code

Add to User Settings (JSON) or .vscode/mcp.json:

{
  "mcp": {
    "inputs": [
      {
        "type": "promptString",
        "id": "reel25ApiKey",
        "description": "Reel25 API Key",
        "password": true
      }
    ],
    "servers": {
      "reel25": {
        "command": "npx",
        "args": ["-y", "reel25-mcp"],
        "env": {
          "REEL25_API_KEY": "${input:reel25ApiKey}"
        }
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/model_config.json:

{
  "mcpServers": {
    "reel25": {
      "command": "npx",
      "args": ["-y", "reel25-mcp"],
      "env": {
        "REEL25_API_KEY": "reel25_sk_your_key_here"
      }
    }
  }
}

Smithery

npx -y @smithery/cli install reel25-mcp --client claude

Available Tools (26)

Videos (Free)

ToolDescription
list_videosList all tracked videos. Supports pagination, filtering by platform, date range, and folder
get_videoGet full video details: current metrics, music info, metadata
get_video_historyHistorical performance snapshots over time
track_videoStart tracking a video by TikTok, Reels, or Shorts URL
bulk_track_videosTrack up to 25 videos in a single call
untrack_videoStop tracking a video and remove it from your workspace

Accounts (Free)

ToolDescription
list_accountsList all tracked creator accounts with latest metrics
get_accountDetailed profile info — bio, follower count, total videos, engagement rate
track_accountStart tracking a creator account by URL across TikTok, Instagram, and YouTube
get_account_videosList all tracked videos belonging to a specific creator
get_account_metricsDetailed performance metrics — follower growth, avg engagement, posting frequency
remove_accountStop tracking a creator account

Content Radar (100 credits)

ToolDescription
search_contentAI-powered content discovery (handles async polling internally, 30-60s)
get_radar_resultsRetrieve results from a previous search by ID
radar_historyList all past searches with status and result counts

AI Video Analysis (5 credits)

ToolDescription
analyze_videoFull AI analysis: hooks, structure, CTA, UGC, demographics (handles async polling, 15-30s)
get_analysisRetrieve an existing analysis for a previously analyzed video

Folders (Free)

ToolDescription
list_foldersList all folders in your workspace
create_folderCreate a new folder
add_videos_to_folderAdd tracked videos to a folder
add_accounts_to_folderAdd tracked accounts to a folder
folder_analyticsAggregated analytics for all content in a folder

Analytics & Workspace (Free)

ToolDescription
top_videosTop performing tracked videos ranked by views, engagement, or growth velocity
growth_trendsFollower and video count growth trends over time
get_creditsCurrent credit balance and usage
get_workspaceWorkspace info: plan, credit limits, tracked counts, team members

Example Prompts

  • "Search for UGC skincare product review videos on TikTok, analyze the top 3 performers, and create a folder with the findings"
  • "What are the top performing videos in my workspace this week? Show me growth trends for the last 30 days"
  • "Find AI productivity tool demos on YouTube, track the top 10, and tell me what hooks and formats work best"

Environment Variables

VariableRequiredDescription
REEL25_API_KEYYesYour Reel25 API key (reel25_sk_...)
REEL25_API_URLNoCustom API URL (default: https://api.reel25.com/api/v1)

Keywords

mcp

FAQs

Package last updated on 07 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts