npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

reelscribe-mcp-server

v1.0.4

Published

MCP server for ReelScribe video transcription - transcribe Instagram, TikTok, and YouTube videos from any AI assistant

Readme

ReelScribe MCP Server

An MCP (Model Context Protocol) server that connects AI assistants to ReelScribe — transcribe Instagram Reels, TikTok videos, and YouTube videos directly from Claude, Cursor, Windsurf, and other MCP-compatible clients.

Setup

1. Get an API Key

Sign up at reelscribe.app (25 free credits) and generate an API key from your API settings.

2. Configure Your MCP Client

Add to your MCP client configuration:

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "reelscribe": {
      "command": "npx",
      "args": ["-y", "reelscribe-mcp-server"],
      "env": {
        "REELSCRIBE_API_KEY": "rs_your_api_key_here"
      }
    }
  }
}

Claude Code (~/.claude.json or project .mcp.json):

{
  "mcpServers": {
    "reelscribe": {
      "command": "npx",
      "args": ["-y", "reelscribe-mcp-server"],
      "env": {
        "REELSCRIBE_API_KEY": "rs_your_api_key_here"
      }
    }
  }
}

Cursor (Settings > MCP):

{
  "mcpServers": {
    "reelscribe": {
      "command": "npx",
      "args": ["-y", "reelscribe-mcp-server"],
      "env": {
        "REELSCRIBE_API_KEY": "rs_your_api_key_here"
      }
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | transcribe_video | Submit a video URL for transcription (1 credit). Returns requestId. | | get_transcription | Get a transcription by ID or requestId. Returns full transcript text. | | list_transcriptions | List your transcriptions with optional status filter. | | search_transcriptions | Find a transcription by the original video URL. | | get_credits | Check credit balance, subscription tier, and storage usage. | | validate_url | Check if a URL is supported without submitting. |

Supported Platforms

  • Instagram — Reels, Posts (/p/), IGTV (/tv/)
  • TikTok — Videos, short links (vm.tiktok.com, vt.tiktok.com)
  • YouTube — Videos, Shorts, short links (youtu.be)

Example Usage

"Transcribe this TikTok video: https://www.tiktok.com/@user/video/123456"

"Check my credit balance"

"List my completed transcriptions"

"Did I already transcribe this video? https://www.instagram.com/reel/ABC123/"

Pricing

  • Free: 25 credits on signup
  • Creator: $9.99/mo — 1,000 credits
  • Agency: $24.99/mo — 3,000 credits
  • Enterprise: $59.99/mo — 10,000 credits

Each transcription costs 1 credit. View pricing

Links

License

MIT